fix(namespaces_test): fix missing namespace name
This commit is contained in:
parent
fcdbe7c510
commit
cef0a2b0b3
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ func (s *Suite) TestRenameNamespace(c *check.C) {
|
|||
_, err = app.GetNamespace("test-renamed")
|
||||
c.Assert(err, check.IsNil)
|
||||
|
||||
err = app.RenameNamespace("test_does_not_exit", "test")
|
||||
err = app.RenameNamespace("test-does-not-exit", "test")
|
||||
c.Assert(err, check.Equals, errNamespaceNotFound)
|
||||
|
||||
namespaceTest2, err := app.CreateNamespace("test2")
|
||||
|
|
Loading…
Reference in a new issue