Skip to content

Commit

Permalink
Minor fix of tests names
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
  • Loading branch information
LK4D4 committed Oct 14, 2014
1 parent fbaa41b commit fcfe80f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration-cli/docker_cli_build_test.go
Expand Up @@ -488,8 +488,8 @@ func TestBuildCopyWildcardCache(t *testing.T) {
logDone("build - copy wild card cache")
}

func TestBuildAddSingleFileToNonExistDir(t *testing.T) {
name := "testaddsinglefiletononexistdir"
func TestBuildAddSingleFileToNonExistingDir(t *testing.T) {
name := "testaddsinglefiletononexistingdir"
defer deleteImages(name)
ctx, err := fakeContext(`FROM busybox
RUN echo 'dockerio:x:1001:1001::/bin:/bin/false' >> /etc/passwd
Expand Down Expand Up @@ -536,8 +536,8 @@ RUN [ $(ls -l /exists | awk '{print $3":"$4}') = 'dockerio:dockerio' ]`,
logDone("build - add directory contents to root")
}

func TestBuildAddDirContentToExistDir(t *testing.T) {
name := "testadddircontenttoexistdir"
func TestBuildAddDirContentToExistingDir(t *testing.T) {
name := "testadddircontenttoexistingdir"
defer deleteImages(name)
ctx, err := fakeContext(`FROM busybox
RUN echo 'dockerio:x:1001:1001::/bin:/bin/false' >> /etc/passwd
Expand Down

0 comments on commit fcfe80f

Please sign in to comment.