Skip to content

Commit

Permalink
Remove unnecessary enableExtendedSessions permutations from the test
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatoliB committed Jul 18, 2024
1 parent 21197a7 commit 1825acc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/DurableTask.AzureStorage.Tests/AzureStorageScenarioTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1286,13 +1286,11 @@ public async Task TimerExpiration(bool enableExtendedSessions)
}

[DataTestMethod]
[DataRow(true, true)]
[DataRow(true, false)]
[DataRow(false, true)]
[DataRow(false, false)]
public async Task TimerDelay(bool enableExtendedSessions, bool useUtc)
[DataRow(true)]
[DataRow(false)]
public async Task TimerDelay(bool useUtc)
{
using (TestOrchestrationHost host = TestHelpers.GetTestOrchestrationHost(enableExtendedSessions))
using (TestOrchestrationHost host = TestHelpers.GetTestOrchestrationHost(false))
{
await host.StartAsync();
// by convention, DateTime objects are expected to be in UTC, but previous version of DTFx.AzureStorage
Expand Down

0 comments on commit 1825acc

Please sign in to comment.