We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b4305 commit 8a787feCopy full SHA for 8a787fe
tests/Temporalio.Tests/Client/EnvConfig/ClientConfigTests.cs
@@ -487,9 +487,9 @@ public void Test_Load_Profile_Tls_From_Paths()
487
address = ""localhost:5678""
488
[profile.default.tls]
489
server_name = ""custom-server""
490
-server_ca_cert_path = ""{caPath}""
491
-client_cert_path = ""{certPath}""
492
-client_key_path = ""{keyPath}""
+server_ca_cert_path = ""{caPath.Replace('\\', '/')}""
+client_cert_path = ""{certPath.Replace('\\', '/')}""
+client_key_path = ""{keyPath.Replace('\\', '/')}""
493
";
494
var source = DataSource.FromUTF8String(toml);
495
var profile = ClientEnvConfig.Profile.Load(new ClientEnvConfig.ProfileLoadOptions
0 commit comments