Skip to content

Commit

Permalink
passing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Dec 15, 2017
1 parent 04c8910 commit 605c963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions context_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ func TestContext_GetAdditionalBucket(t *testing.T) {
c := createContext(t)
db, name := c.GetAdditionalBucket("new")
require.NotNil(t, db)
require.Equal(t, "testServicenew", name)
require.Equal(t, "testService_new", name)
// Need to accept a second run with an existing bucket
db, name = c.GetAdditionalBucket("new")
require.NotNil(t, db)
require.Equal(t, "testServicenew", name)
require.Equal(t, "testService_new", name)
}

func TestContext_Path(t *testing.T) {
Expand Down

0 comments on commit 605c963

Please sign in to comment.