Fix Issue 3489.

This commit is contained in:
monopole
2021-02-02 20:45:41 -08:00
parent 61daea0202
commit d3ea87220b
4 changed files with 345 additions and 29 deletions

View File

@@ -1196,10 +1196,10 @@ func TestSameEndingSubarray(t *testing.T) {
b: []string{},
expected: true,
},
"no1 - TODO(3489) this should be false": {
"no1": {
a: []string{"a"},
b: []string{},
expected: true,
expected: false,
},
"no2": {
a: []string{"b", "a"},