From 86d48aa111384539b0d2bd50353c4d4c40a5750a Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Sun, 22 May 2016 18:39:35 +0100 Subject: [PATCH] Typo fix wiildcard -> wildcard Signed-off-by: Alex Ellis --- builder/dockerfile/evaluator_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/dockerfile/evaluator_test.go b/builder/dockerfile/evaluator_test.go index db52c9c90b..ac61dba943 100644 --- a/builder/dockerfile/evaluator_test.go +++ b/builder/dockerfile/evaluator_test.go @@ -69,13 +69,13 @@ func initDispatchTestCases() []dispatchTestCase { files: map[string]string{"file1.txt": "test1", "file2.txt": "test2"}, }, { - name: "Wiildcard ADD multiple files to file", + name: "Wildcard ADD multiple files to file", dockerfile: "ADD file*.txt test", expectedError: "When using ADD with more than one source file, the destination must be a directory and end with a /", files: map[string]string{"file1.txt": "test1", "file2.txt": "test2"}, }, { - name: "Wiildcard JSON ADD multiple files to file", + name: "Wildcard JSON ADD multiple files to file", dockerfile: `ADD ["file*.txt", "test"]`, expectedError: "When using ADD with more than one source file, the destination must be a directory and end with a /", files: map[string]string{"file1.txt": "test1", "file2.txt": "test2"},