Skip to content

Commit d036b05

Browse files
Correct argument order
It does not matter technically for the test becaues all we care about is publishing a message, but still can confuse the reader.
1 parent d8daaa2 commit d036b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/client/Unit/src/unit/TestConnectionBlocked.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static bool IsRunningOnMono()
162162
protected void Publish(IConnection conn)
163163
{
164164
IModel ch = conn.CreateModel();
165-
ch.BasicPublish("", "amq.fanout", null, enc.GetBytes("message"));
165+
ch.BasicPublish("amq.fanout", "", null, enc.GetBytes("message"));
166166
}
167167

168168
protected override void ReleaseResources()

0 commit comments

Comments
 (0)