Skip to content

Commit

Permalink
Fixed test for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Jan 17, 2024
1 parent ff99f74 commit 0bf0c33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/NATS.Client.Core.Tests/TlsClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ public async Task Client_timeout_during_tls_auth()
ConnectTimeout = TimeSpan.FromSeconds(3),
TlsOpts = new NatsTlsOpts
{
CaFile = @"resources\certs\ca-cert.pem",
CertFile = @"resources\certs\client-cert.pem",
KeyFile = @"resources\certs\client-key.pem",
CaFile = "resources/certs/ca-cert.pem",
CertFile = "resources/certs/client-cert.pem",
KeyFile = "resources/certs/client-key.pem",
},
});

Expand Down

0 comments on commit 0bf0c33

Please sign in to comment.