Skip to content

Commit

Permalink
Update assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillkrylov committed Jan 23, 2025
1 parent cbdfa95 commit b1a963d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clio.tests/Command/FeatureCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ public void Execute_ShouldClearCacheAndLogResult(string featureName){

//Act
_sut.ClearCache("ActivateAdvancedModeForOriginalSchemas");
Thread.Sleep(1000); //Loger need 300ms to flush its cache, thus we sleep
Thread.Sleep(300); //Logger need 300ms to flush its cache, thus we sleep

//Assert
_textWriter.ToString().Should().Be($"[INF] - {responseBody}\r\n");
_textWriter.ToString().Should().Contain($"[INF] - {responseBody}\r\n");
}

}

0 comments on commit b1a963d

Please sign in to comment.