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

Commit c52e2c00 authored by Spandan Das's avatar Spandan Das
Browse files

Use default format in print statement

For some reason, %q complains when the test is run outside m

Test: go test ./android
Change-Id: I1a6571feb59f342c9645b998ea2f01ff0a581e90
parent aa3408a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -646,7 +646,7 @@ func testSortedKeysHelper[K Ordered, V any](t *testing.T, name string, input map
	t.Run(name, func(t *testing.T) {
		actual := SortedKeys(input)
		if !reflect.DeepEqual(actual, expected) {
			t.Errorf("expected %q, got %q", expected, actual)
			t.Errorf("expected %v, got %v", expected, actual)
		}
	})
}