Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Jun 14, 2022
1 parent 9600809 commit cf2b303
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected HardProtocolException(string message) : base(message)

protected HardProtocolException(string message, bool canShutdownCleanly) : base(message)
{
_canShutdownCleanly= canShutdownCleanly;
_canShutdownCleanly = canShutdownCleanly;
}

public bool CanShutdownCleanly
Expand Down
4 changes: 2 additions & 2 deletions projects/Unit/TestBasicPublish.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void TestMaxMessageSize()
{
c.ConnectionShutdown += (o, a) =>
{
sawConnectionShutdown= true;
sawConnectionShutdown = true;
};

Assert.Equal(maxMsgSize, cf.MaxMessageSize);
Expand All @@ -170,7 +170,7 @@ public void TestMaxMessageSize()
{
m.ModelShutdown += (o, a) =>
{
sawModelShutdown= true;
sawModelShutdown = true;
};

m.CallbackException += (o, a) =>
Expand Down
2 changes: 1 addition & 1 deletion projects/Unit/TestConnectionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void TestProperties()
string v = "vhost";
string h = "192.168.0.1";
int p = 5674;
uint mms = 512 * 1024 * 1024;
uint mms = 512 * 1024 * 1024;

var cf = new ConnectionFactory
{
Expand Down

0 comments on commit cf2b303

Please sign in to comment.