Skip to content

Commit

Permalink
fix two typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbaird committed May 18, 2015
1 parent 9fd168f commit 09363f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/catindexinfo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func TestCatIndexInfo(t *testing.T) {
So(i.Store.Size, ShouldEqual, 11000)
So(i.Store.PriSize, ShouldEqual, 13000)
})
Convey("Create index line from a bad replcas index listing", t, func() {
Convey("Create index line from a bad replicas index listing", t, func() {
i, err := NewCatIndexInfo("red foo-2000-01-01-bar 2 a 1234 3 11000 13000")
So(err, ShouldBeNil)
So(i.Health, ShouldEqual, "red")
Expand Down Expand Up @@ -58,7 +58,7 @@ func TestCatIndexInfo(t *testing.T) {
So(i.Store.Size, ShouldEqual, 11000)
So(i.Store.PriSize, ShouldEqual, 13000)
})
Convey("Create index line from a bad delets index listing", t, func() {
Convey("Create index line from a bad deletes index listing", t, func() {
i, err := NewCatIndexInfo("red foo-2000-01-01-bar 2 1 1234 a 11000 13000")
So(err, ShouldBeNil)
So(i.Health, ShouldEqual, "red")
Expand Down

0 comments on commit 09363f9

Please sign in to comment.