Skip to content

Commit

Permalink
Fix test expected value
Browse files Browse the repository at this point in the history
  • Loading branch information
normj committed Feb 24, 2024
1 parent 17e29cc commit bd4db5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ public async Task ExceptionTests(string handler, string input, string expectedEr
[InlineData("SSL_CERT_FILE", "\"/var/runtime/empty-certificates.crt\"", null)]
[InlineData("SSL_CERT_FILE", "\"/tmp/my-bundle\"", "/tmp/my-bundle")]
#else
[InlineData("SSL_CERT_FILE", "", null)]
[InlineData("SSL_CERT_FILE", "/tmp/my-bundle", "/tmp/my-bundle")]
[InlineData("SSL_CERT_FILE", "\"\"", null)]
[InlineData("SSL_CERT_FILE", "\"/tmp/my-bundle\"", "/tmp/my-bundle")]
#endif
public async Task CheckEnvironmentVariable(string envName, string expectedValue, string setValue)
{
Expand Down

0 comments on commit bd4db5a

Please sign in to comment.