From 15ea5a479a78d1011cda9bd55fd442d810234eb6 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Wed, 1 May 2013 14:37:26 -0700 Subject: [PATCH] Update the TestBuild with new format --- builder_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/builder_test.go b/builder_test.go index 345fd2c594..d7fa921e3d 100644 --- a/builder_test.go +++ b/builder_test.go @@ -7,12 +7,12 @@ import ( const Dockerfile = ` # VERSION 0.1 -# DOCKER-VERSION 0.1.6 +# DOCKER-VERSION 0.2 -from docker-ut -run sh -c 'echo root:testpass > /tmp/passwd' -run mkdir -p /var/run/sshd -copy https://raw.github.com/dotcloud/docker/master/CHANGELOG.md /tmp/CHANGELOG.md +from docker-ut +run sh -c 'echo root:testpass > /tmp/passwd' +run mkdir -p /var/run/sshd +insert https://raw.github.com/dotcloud/docker/master/CHANGELOG.md /tmp/CHANGELOG.md ` func TestBuild(t *testing.T) {