Fix typo in golden file name

Signed-off-by: Mathieu Champlon <mathieu.champlon@docker.com>
This commit is contained in:
Mathieu Champlon 2018-04-25 14:19:34 +02:00
parent 5aa9d6a35f
commit 0d7bb8adaa
2 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ func TestDeployWithNamedResources(t *testing.T) {
result.Assert(t, icmd.Success)
stdout := strings.Split(result.Stdout(), "\n")
expected := strings.Split(string(golden.Get(t, "stack-deploy-with-nanes.golden")), "\n")
expected := strings.Split(string(golden.Get(t, "stack-deploy-with-names.golden")), "\n")
sort.Strings(stdout)
sort.Strings(expected)
assert.DeepEqual(t, stdout, expected)