From cdd5d5e4c3fe241d178c09edb521ae91689b55df Mon Sep 17 00:00:00 2001 From: buddhamagnet Date: Mon, 20 Apr 2015 18:54:47 +0100 Subject: [PATCH] fix typo Signed-off-by: buddhamagnet --- integration-cli/docker_cli_run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index de53fd4941..1ee4319d63 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -576,7 +576,7 @@ func TestVolumesFromGetsProperMode(t *testing.T) { if _, err := runCommand(cmd); err != nil { t.Fatal(err) } - // Expect this "rw" mode to be be ignored since the inheritted volume is "ro" + // Expect this "rw" mode to be be ignored since the inherited volume is "ro" cmd = exec.Command(dockerBinary, "run", "--volumes-from", "parent:rw", "busybox", "touch", "/test/file") if _, err := runCommand(cmd); err == nil { t.Fatal("Expected volumes-from to inherit read-only volume even when passing in `rw`")