Skip to content

Commit

Permalink
Fix BrokerRunningTest back to http for management
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Mar 21, 2019
1 parent 660df5e commit 04d014a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017 the original author or authors.
* Copyright 2017-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -44,7 +44,7 @@ public void testVars() {
brokerRunning.setPort(1234);
brokerRunning.setUser("fiz");

assertEquals("https://baz:15672/api/", brokerRunning.getAdminUri());
assertEquals("http://baz:15672/api/", brokerRunning.getAdminUri());
ConnectionFactory connectionFactory = brokerRunning.getConnectionFactory();
assertEquals("baz", connectionFactory.getHost());
assertEquals(1234, connectionFactory.getPort());
Expand Down

0 comments on commit 04d014a

Please sign in to comment.