From 08fced46f345622e2032a215c82ee1b87c378fcc Mon Sep 17 00:00:00 2001 From: Weibin Lin Date: Sat, 28 Jul 2018 09:47:10 +0800 Subject: [PATCH] fix a duplicate case in TestUpdateNodeObjects --- test/integration/master/synthetic_master_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/master/synthetic_master_test.go b/test/integration/master/synthetic_master_test.go index 317e5df11bc..a4ef671983a 100644 --- a/test/integration/master/synthetic_master_test.go +++ b/test/integration/master/synthetic_master_test.go @@ -862,7 +862,7 @@ func TestUpdateNodeObjects(t *testing.T) { Reason: "bar", }, } - case i%4 == 1: + case i%4 == 2: lastCount = 0 n.Status.Conditions = nil }