Skip to content

Commit eec8afd

Browse files
committed
fixup
1 parent aa2d5dc commit eec8afd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/ConnectionTests/ConnectionSettingsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void ValidateAddress()
3131
Assert.Equal(SaslMechanism.External, connectionSettings.SaslMechanism);
3232

3333
ConnectionSettings second = new("amqp1", "localhost", 5672, "guest-user",
34-
"guest-password", "path/", "connection_name", SaslMechanism.External,
34+
"guest-password", "vhost_1", "connection_name", SaslMechanism.External,
3535
recoveryConfiguration);
3636

3737
Assert.Equal(connectionSettings, second);

Tests/Recovery/CustomPublisherConsumerRecoveryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public async Task PublisherAndConsumerShouldNotRestartIfRecoveryIsDisabled()
2525
Assert.Null(_management);
2626

2727
var recoveryConfiguration = new RecoveryConfiguration();
28-
recoveryConfiguration.Activated(true);
28+
recoveryConfiguration.Activated(false);
2929

3030
ConnectionSettings connectionSettings =
3131
ConnectionSettingsBuilder.Create().RecoveryConfiguration(recoveryConfiguration)

0 commit comments

Comments
 (0)