Skip to content

Commit bd4db5a

Browse files
committed
Fix test expected value
1 parent 17e29cc commit bd4db5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LambdaRuntimeDockerfiles/SmokeTests/test/ImageFunction.SmokeTests/ImageFunctionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ public async Task ExceptionTests(string handler, string input, string expectedEr
127127
[InlineData("SSL_CERT_FILE", "\"/var/runtime/empty-certificates.crt\"", null)]
128128
[InlineData("SSL_CERT_FILE", "\"/tmp/my-bundle\"", "/tmp/my-bundle")]
129129
#else
130-
[InlineData("SSL_CERT_FILE", "", null)]
131-
[InlineData("SSL_CERT_FILE", "/tmp/my-bundle", "/tmp/my-bundle")]
130+
[InlineData("SSL_CERT_FILE", "\"\"", null)]
131+
[InlineData("SSL_CERT_FILE", "\"/tmp/my-bundle\"", "/tmp/my-bundle")]
132132
#endif
133133
public async Task CheckEnvironmentVariable(string envName, string expectedValue, string setValue)
134134
{

0 commit comments

Comments
 (0)