From fc77b3e9e6afe730fcf555d75517ba9e590e35f0 Mon Sep 17 00:00:00 2001 From: Yicheng Qin Date: Tue, 13 May 2014 22:28:28 -0400 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 4062d091a..5980f1eb7 100644 --- a/tests/functional/simple_snapshot_test.go +++ b/tests/functional/simple_snapshot_test.go @@ -56,7 +56,7 @@ func TestSnapshot(t *testing.T) { index, _ := strconv.Atoi(snapshots[0].Name()[2:5]) - if index < 503 || index > 515 { + if index < 503 || index > 516 { t.Fatal("wrong name of snapshot :", snapshots[0].Name()) }