diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-04-10 15:10:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 10:10:45 -0400 |
commit | 85c61bff1cee2344646b533b96a4b5c1a67a5850 (patch) | |
tree | 40103e0a7450e53f445e46c8bde4ce923ad736c9 /std/testing/asserts_test.ts | |
parent | 5bf1e4de3b394eef203be3c393db57538e748be1 (diff) |
fix(std/testing/asserts): change left/right to actual/expected (#4697)
Diffstat (limited to 'std/testing/asserts_test.ts')
-rw-r--r-- | std/testing/asserts_test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/std/testing/asserts_test.ts b/std/testing/asserts_test.ts index 62e199298..ac0676ed5 100644 --- a/std/testing/asserts_test.ts +++ b/std/testing/asserts_test.ts @@ -251,7 +251,9 @@ test(function testingAssertFailWithWrongErrorClass(): void { const createHeader = (): string[] => [ "", "", - ` ${gray(bold("[Diff]"))} ${red(bold("Left"))} / ${green(bold("Right"))}`, + ` ${gray(bold("[Diff]"))} ${red(bold("Actual"))} / ${green( + bold("Expected") + )}`, "", "", ]; |