Skip to content

Commit

Permalink
pass linter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid committed Jul 9, 2024
1 parent 778cecd commit bac3b33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion test/Common/TestDurableClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public async Task<DurableOrchestrationStatus> WaitForCompletionAsync(
{
if (timeout == null)
{
timeout = Debugger.IsAttached ? TimeSpan.FromMinutes(5) : TimeSpan.FromMinutes(3); // 3 minutes because AzureStorage emulator can be slow
timeout = Debugger.IsAttached ? TimeSpan.FromMinutes(5) : TimeSpan.FromMinutes(1);
}

Stopwatch sw = Stopwatch.StartNew();
Expand Down
1 change: 0 additions & 1 deletion test/FunctionsV2/EndToEndTraceHelperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public void StringSanitizerTest(
}
}


[Theory]
[InlineData(true, "DO NOT LOG ME")]
[InlineData(false, "DO NOT LOG ME")]
Expand Down

0 comments on commit bac3b33

Please sign in to comment.