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

Commit b7a67206 authored by Alix Espino's avatar Alix Espino Committed by Gerrit Code Review
Browse files

Merge "use message in android.AssertStringMatches()" into main

parents a9022509 141ab6ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ func AssertStringMatches(t *testing.T, message, s, expectedRex string) {
		return
	}
	if !ok {
		t.Errorf("%s does not match regular expression %s", s, expectedRex)
		t.Errorf("%s: %s does not match regular expression %s", message, s, expectedRex)
	}
}