From 09363f92cd44e47b5034719cdef78da73190d847 Mon Sep 17 00:00:00 2001 From: Matthew Baird Date: Mon, 18 May 2015 16:30:57 -0700 Subject: [PATCH] fix two typos --- lib/catindexinfo_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/catindexinfo_test.go b/lib/catindexinfo_test.go index 72914f93..1eb69396 100644 --- a/lib/catindexinfo_test.go +++ b/lib/catindexinfo_test.go @@ -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") @@ -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")