Skip to content

Commit 25a02e4

Browse files
committed
Formatting and addes supression of missing await
1 parent 1063212 commit 25a02e4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

utPLSQL.Api/utPLSQL.Api.Test/RealTimeTestRunnerTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ public void TestRunTestsAndAbort()
7777

7878
testRunner.Connect(username: "ut3_tester", password: "ut3", database: "orclpdb1");
7979

80+
#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
8081
testRunner.RunTestsAsync("ut3_tester.test_ut_test", @event => { });
82+
#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
8183

8284
testRunner.Close();
8385
}

utPLSQL.Api/utPLSQL.Api/TestRunner.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public void Connect(string username, string password, string database, string co
4949
consumeConnection = new OracleConnection(connectionString);
5050
consumeConnection.Open();
5151
}
52+
5253
/// <summary>
5354
/// Closes both connections
5455
/// </summary>

0 commit comments

Comments
 (0)