Skip to content

Commit a19ebb0

Browse files
committed
Formatting.
1 parent 149fca9 commit a19ebb0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Provider/src/FirebirdSql.Data.UnitTests/FbImplicitTransactionTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,7 @@ public void UpdatedBlobFieldTest()
181181
{
182182
FbCommand command = new FbCommand("update TEST set blob_field = @blob_field where int_field = @int_field", Connection);
183183
command.Parameters.Add("@int_field", FbDbType.Integer).Value = 1;
184-
command.Parameters.Add("@blob_field", FbDbType.Binary).Value =
185-
Encoding.UTF8.GetBytes("Blob field update with implicit transaction");
184+
command.Parameters.Add("@blob_field", FbDbType.Binary).Value = Encoding.UTF8.GetBytes("Blob field update with implicit transaction");
186185

187186
int i = command.ExecuteNonQuery();
188187

0 commit comments

Comments
 (0)