From 7cb126967c8130b6f6c35bcebea79e639bb1174e Mon Sep 17 00:00:00 2001 From: Yicheng Qin Date: Sat, 31 May 2014 10:42:31 -0700 Subject: [PATCH] fix(simple_snapshot_test): enlarge reasonable index range --- tests/functional/simple_snapshot_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/simple_snapshot_test.go b/tests/functional/simple_snapshot_test.go index 5980f1eb7..c238d8691 100644 --- a/tests/functional/simple_snapshot_test.go +++ b/tests/functional/simple_snapshot_test.go @@ -89,7 +89,7 @@ func TestSnapshot(t *testing.T) { index, _ = strconv.Atoi(snapshots[0].Name()[2:6]) - if index < 1010 || index > 1025 { + if index < 1010 || index > 1029 { t.Fatal("wrong name of snapshot :", snapshots[0].Name()) } }