Skip to content

Commit 04d014a

Browse files
committed
Fix BrokerRunningTest back to http for management
https://build.spring.io/browse/AMQP-MASTER-1059/
1 parent 660df5e commit 04d014a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-rabbit-junit/src/test/java/org/springframework/amqp/rabbit/junit/BrokerRunningTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017 the original author or authors.
2+
* Copyright 2017-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ public void testVars() {
4444
brokerRunning.setPort(1234);
4545
brokerRunning.setUser("fiz");
4646

47-
assertEquals("https://baz:15672/api/", brokerRunning.getAdminUri());
47+
assertEquals("http://baz:15672/api/", brokerRunning.getAdminUri());
4848
ConnectionFactory connectionFactory = brokerRunning.getConnectionFactory();
4949
assertEquals("baz", connectionFactory.getHost());
5050
assertEquals(1234, connectionFactory.getPort());

0 commit comments

Comments
 (0)