Skip to content

Commit ec09e69

Browse files
committed
Re-enable temporarily disabled tests in DurableClientTests
1 parent 5511c5f commit ec09e69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/E2E/AzureFunctions.PowerShell.Durable.SDK.E2E/DurableClientTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ await ValidateDurableWorkflowResults(
263263
}
264264

265265
[Theory]
266-
// [InlineData(null, null, "1.0", "1.0")] // No version specified, should use defaultVersion from host.json for both
267-
// [InlineData("0.5", null, "0.5", "1.0")] // Version specified for orchestrator, orchestrator should use it, suborchestrator should use defaultVersion
268-
// [InlineData(null, "0.7", "1.0", "0.7")] // Version specified for suborchestrator only, orchestrator should use defaultVersion, suborchestrator should use specified version
266+
[InlineData(null, null, "1.0", "1.0")] // No version specified, should use defaultVersion from host.json for both
267+
[InlineData("0.5", null, "0.5", "1.0")] // Version specified for orchestrator, orchestrator should use it, suborchestrator should use defaultVersion
268+
[InlineData(null, "0.7", "1.0", "0.7")] // Version specified for suborchestrator only, orchestrator should use defaultVersion, suborchestrator should use specified version
269269
[InlineData("0.5", "0.7", "0.5", "0.7")] // Both versions specified, each should use their respective versions
270270
public async Task OrchestrationVersionIsPropagatedToContext(
271271
string orchestratorVersion,

0 commit comments

Comments
 (0)