Skip to content

Commit cf2b303

Browse files
committed
Fix formatting
1 parent 9600809 commit cf2b303

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

projects/RabbitMQ.Client/client/exceptions/HardProtocolException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected HardProtocolException(string message) : base(message)
4343

4444
protected HardProtocolException(string message, bool canShutdownCleanly) : base(message)
4545
{
46-
_canShutdownCleanly= canShutdownCleanly;
46+
_canShutdownCleanly = canShutdownCleanly;
4747
}
4848

4949
public bool CanShutdownCleanly

projects/Unit/TestBasicPublish.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public void TestMaxMessageSize()
159159
{
160160
c.ConnectionShutdown += (o, a) =>
161161
{
162-
sawConnectionShutdown= true;
162+
sawConnectionShutdown = true;
163163
};
164164

165165
Assert.Equal(maxMsgSize, cf.MaxMessageSize);
@@ -170,7 +170,7 @@ public void TestMaxMessageSize()
170170
{
171171
m.ModelShutdown += (o, a) =>
172172
{
173-
sawModelShutdown= true;
173+
sawModelShutdown = true;
174174
};
175175

176176
m.CallbackException += (o, a) =>

projects/Unit/TestConnectionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void TestProperties()
4848
string v = "vhost";
4949
string h = "192.168.0.1";
5050
int p = 5674;
51-
uint mms = 512 * 1024 * 1024;
51+
uint mms = 512 * 1024 * 1024;
5252

5353
var cf = new ConnectionFactory
5454
{

0 commit comments

Comments
 (0)