Fix test assertion in noms-merge::TestLose() (#2498)

This was caused by me changing an error string and failing
to update the test.
This commit is contained in:
cmasone-attic
2016-09-01 11:34:04 -07:00
committed by GitHub
parent 771eb092da
commit 9f080a2fa7
+1 -1
View File
@@ -90,7 +90,7 @@ func (s *testSuite) TestLose() {
{[]string{"foo"}, "Incorrect number of arguments\n"},
{[]string{"foo", "bar"}, "Incorrect number of arguments\n"},
{[]string{"foo", "bar", "baz", "quux"}, "Incorrect number of arguments\n"},
{[]string{"foo", "bar", "baz"}, "--parent is currently required\n"},
{[]string{"foo", "bar", "baz"}, "--parent is required\n"},
{[]string{"--parent=" + p, sp, l + "!!", r}, "Invalid dataset " + l + "!!, must match [a-zA-Z0-9\\-_/]+\n"},
{[]string{"--parent=" + p, sp, l + "2", r}, "Dataset " + l + "2 has no data\n"},
{[]string{"--parent=" + p + "2", sp, l, r}, "Dataset " + p + "2 has no data\n"},