diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2022-09-28 23:02:49 -0400 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-09-29 14:39:10 +0300 |
| commit | 5e0d8a435e51f7b5eb51d286bfaf0adb32d90381 (patch) | |
| tree | 9ea07b1301e0ea793edb3fffa45f06d1250be570 /lib/std/testing.zig | |
| parent | 9a2f17f9f9dfde9c5438ccb439b727e1e814c4f5 (diff) | |
| download | zig-5e0d8a435e51f7b5eb51d286bfaf0adb32d90381.tar.gz zig-5e0d8a435e51f7b5eb51d286bfaf0adb32d90381.zip | |
testing: fix copy paste typo
Diffstat (limited to 'lib/std/testing.zig')
| -rw-r--r-- | lib/std/testing.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/testing.zig b/lib/std/testing.zig index c71e2d39c9..2346ee6b5d 100644 --- a/lib/std/testing.zig +++ b/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); |
