File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ func (s *DockerSuite) TestBuildHandleEscapes(c *check.C) {
302
302
}
303
303
304
304
if _ , ok := result ["bar" ]; ! ok {
305
- c .Fatal ("Could not find volume bar set from env foo in volumes table" )
305
+ c .Fatalf ("Could not find volume bar set from env foo in volumes table, got %q" , result )
306
306
}
307
307
308
308
deleteImages (name )
@@ -325,7 +325,7 @@ func (s *DockerSuite) TestBuildHandleEscapes(c *check.C) {
325
325
}
326
326
327
327
if _ , ok := result ["${FOO}" ]; ! ok {
328
- c .Fatal ("Could not find volume ${FOO} set from env foo in volumes table" )
328
+ c .Fatalf ("Could not find volume ${FOO} set from env foo in volumes table, got %q" , result )
329
329
}
330
330
331
331
deleteImages (name )
@@ -352,7 +352,7 @@ func (s *DockerSuite) TestBuildHandleEscapes(c *check.C) {
352
352
}
353
353
354
354
if _ , ok := result [`\\\${FOO}` ]; ! ok {
355
- c .Fatal (`Could not find volume \\\${FOO} set from env foo in volumes table` , result )
355
+ c .Fatalf (`Could not find volume \\\${FOO} set from env foo in volumes table, got %q ` , result )
356
356
}
357
357
358
358
}
You can’t perform that action at this time.
0 commit comments