authorgravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2022-09-28 23:02:49-04:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-09-29 14:39:10+03:00
log5e0d8a435e51f7b5eb51d286bfaf0adb32d90381
tree9ea07b1301e0ea793edb3fffa45f06d1250be570
parent9a2f17f9f9dfde9c5438ccb439b727e1e814c4f5

testing: fix copy paste typo


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/testing.zig+1-1
...@@ -494,7 +494,7 @@ pub fn expectStringStartsWith(actual: []const u8, expected_starts_with: []const...@@ -494,7 +494,7 @@ pub fn expectStringStartsWith(actual: []const u8, expected_starts_with: []const
494494
495 print("\n====== expected to start with: =========\n", .{});495 print("\n====== expected to start with: =========\n", .{});
496 printWithVisibleNewlines(expected_starts_with);496 printWithVisibleNewlines(expected_starts_with);
497 print("\n====== instead ended with: ===========\n", .{});497 print("\n====== instead started with: ===========\n", .{});
498 printWithVisibleNewlines(shortened_actual);498 printWithVisibleNewlines(shortened_actual);
499 print("\n========= full output: ==============\n", .{});499 print("\n========= full output: ==============\n", .{});
500 printWithVisibleNewlines(actual);500 printWithVisibleNewlines(actual);