Commit 5e0d8a435e

Jacob Young <jacobly0@users.noreply.github.com>
2022-09-29 05:02:49
testing: fix copy paste typo
1 parent 9a2f17f
Changed files (1)
lib
lib/std/testing.zig
@@ -494,7 +494,7 @@ pub fn expectStringStartsWith(actual: []const u8, expected_starts_with: []const
 
     print("\n====== expected to start with: =========\n", .{});
     printWithVisibleNewlines(expected_starts_with);
-    print("\n====== instead ended with: ===========\n", .{});
+    print("\n====== instead started with: ===========\n", .{});
     printWithVisibleNewlines(shortened_actual);
     print("\n========= full output: ==============\n", .{});
     printWithVisibleNewlines(actual);