Fix container volumes being reused sometimes (#283)

This commit is contained in:
Stan Wohlwend
2020-06-18 17:21:55 +02:00
committed by GitHub
parent f5e1bd45b3
commit d4e41a90a2
4 changed files with 33 additions and 10 deletions

View File

@@ -16,8 +16,8 @@ func TestRunContext_EvalBool(t *testing.T) {
Workdir: ".",
},
Env: map[string]string{
"TRUE": "true",
"FALSE": "false",
"TRUE": "true",
"FALSE": "false",
"SOME_TEXT": "text",
},
Run: &model.Run{
@@ -52,8 +52,8 @@ func TestRunContext_EvalBool(t *testing.T) {
rc.ExprEval = rc.NewExpressionEvaluator()
tables := []struct {
in string
out bool
in string
out bool
}{
// The basic ones
{"true", true},