Skip to content

Commit e6b11c6

Browse files
committed
Fixed a logging issue
1 parent fbb1a7e commit e6b11c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/PChecker/CheckerCore/SystematicTesting/ControlledRuntime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ public Task<bool> SendEventAndExecuteAsync(StateMachineId targetId, Event e)
367367
internal void RunTest(Delegate testMethod, string testName)
368368
{
369369
testName = string.IsNullOrEmpty(testName) ? string.Empty : $" '{testName}'";
370-
Logger.WriteLine($"<TestLog> Running test {testName}.");
370+
Logger.WriteLine($"<TestLog> Running test{testName}.");
371371
Assert(testMethod != null, "Unable to execute a null test method.");
372372
Assert(Task.CurrentId != null, "The test must execute inside a controlled task.");
373373

0 commit comments

Comments
 (0)