From 277181a63cccb7f18914093f04443191f8c321a8 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 10 Dec 2019 11:18:06 +0100 Subject: pkg/bisect: always test parent commit Fixes #1527 --- pkg/bisect/bisect_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pkg/bisect/bisect_test.go') diff --git a/pkg/bisect/bisect_test.go b/pkg/bisect/bisect_test.go index 701b35edc..4a77ba887 100644 --- a/pkg/bisect/bisect_test.go +++ b/pkg/bisect/bisect_test.go @@ -308,15 +308,14 @@ func TestBisectionResults(t *testing.T) { isRelease: true, }, { - name: "cause-not-in-previous-release", + name: "cause-not-in-previous-release-issue-1527", startCommit: 905, culprit: 650, commitLen: 1, expectRep: true, sameBinaryStart: 500, sameBinaryEnd: 650, - // This should be (see #1527): - // noopChange: true, + noopChange: true, }, } for _, test := range tests { -- cgit mrf-deployment