aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/bisect/bisect_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-12-10 11:18:06 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-12-10 12:35:10 +0100
commit277181a63cccb7f18914093f04443191f8c321a8 (patch)
treed48401599b073778bb17d9cbef50af5d5579f752 /pkg/bisect/bisect_test.go
parent4538d6d746f2dc7443cb25940513ef23dbb275f0 (diff)
pkg/bisect: always test parent commit
Fixes #1527
Diffstat (limited to 'pkg/bisect/bisect_test.go')
-rw-r--r--pkg/bisect/bisect_test.go5
1 files changed, 2 insertions, 3 deletions
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 {