Skip to content

Commit 79697e9

Browse files
authored
Update projects/Unit/TestConnectionRecovery.cs
1 parent 1bf7154 commit 79697e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/Unit/TestConnectionRecovery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ public void TestRecoveringConsumerHandlerOnConnection_EventArgumentsArePassedDow
771771
Assert.That(ctagMatches, Is.True, "expected consumer tag to match");
772772
Assert.That(consumerArgumentMatches, Is.True, "expected consumer arguments to match");
773773
Assert.That(arguments.ContainsKey(key), Is.True);
774-
string actualVal = arguments[key];
774+
string actualVal = (string)arguments[key];
775775
Assert.That(actualVal, Is.EqualTo(value));
776776
}
777777

0 commit comments

Comments
 (0)