Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4973d45d authored by Jooyung Han's avatar Jooyung Han
Browse files

Add t.helper() to AssertStringListContainsEquals

Bug: n/a
Test: m nothing
Change-Id: I49d87ac75edbc4856eb5a178c9085134a4185487
parent 5c309aa3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -160,6 +160,7 @@ func AssertStringListDoesNotContain(t *testing.T, message string, list []string,
// the value of the expected bool. If the expectation does not hold it reports an error prefixed with
// the supplied message and including a reason for why it failed.
func AssertStringListContainsEquals(t *testing.T, message string, list []string, s string, expected bool) {
	t.Helper()
	if expected {
		AssertStringListContains(t, message, list, s)
	} else {