Skip to content

Commit 6ce09d9

Browse files
committed
Minor test tweaks due to whitespace differences in v2 vs v4.
1 parent 71af8ba commit 6ce09d9

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

test/throws.js

+16-16
Original file line numberDiff line numberDiff line change
@@ -41,65 +41,65 @@ tap.test('failures', function (tt) {
4141
+ 'not ok 1 should throw\n'
4242
+ ' ---\n'
4343
+ ' operator: throws\n'
44-
+ ' expected: |-\n'
44+
+ ' expected:\n'
4545
+ ' undefined\n'
46-
+ ' actual: |-\n'
46+
+ ' actual:\n'
4747
+ " { [TypeError: " + getNonFunctionMessage() + "] message: '" + getNonFunctionMessage() + "' }\n"
4848
+ ' ...\n'
4949
+ 'not ok 2 should throw\n'
5050
+ ' ---\n'
5151
+ ' operator: throws\n'
52-
+ ' expected: |-\n'
52+
+ ' expected:\n'
5353
+ ' undefined\n'
54-
+ ' actual: |-\n'
54+
+ ' actual:\n'
5555
+ " { [TypeError: " + getNonFunctionMessage(null) + "] message: '" + getNonFunctionMessage(null) + "' }\n"
5656
+ ' ...\n'
5757
+ 'not ok 3 should throw\n'
5858
+ ' ---\n'
5959
+ ' operator: throws\n'
60-
+ ' expected: |-\n'
60+
+ ' expected:\n'
6161
+ ' undefined\n'
62-
+ ' actual: |-\n'
62+
+ ' actual:\n'
6363
+ " { [TypeError: " + getNonFunctionMessage(true) + "] message: '" + getNonFunctionMessage(true) + "' }\n"
6464
+ ' ...\n'
6565
+ 'not ok 4 should throw\n'
6666
+ ' ---\n'
6767
+ ' operator: throws\n'
68-
+ ' expected: |-\n'
68+
+ ' expected:\n'
6969
+ ' undefined\n'
70-
+ ' actual: |-\n'
70+
+ ' actual:\n'
7171
+ " { [TypeError: " + getNonFunctionMessage(false) + "] message: '" + getNonFunctionMessage(false) + "' }\n"
7272
+ ' ...\n'
7373
+ 'not ok 5 should throw\n'
7474
+ ' ---\n'
7575
+ ' operator: throws\n'
76-
+ ' expected: |-\n'
76+
+ ' expected:\n'
7777
+ ' undefined\n'
78-
+ ' actual: |-\n'
78+
+ ' actual:\n'
7979
+ " { [TypeError: " + getNonFunctionMessage('abc') + "] message: '" + getNonFunctionMessage('abc') + "' }\n"
8080
+ ' ...\n'
8181
+ 'not ok 6 should throw\n'
8282
+ ' ---\n'
8383
+ ' operator: throws\n'
84-
+ ' expected: |-\n'
84+
+ ' expected:\n'
8585
+ ' undefined\n'
86-
+ ' actual: |-\n'
86+
+ ' actual:\n'
8787
+ " { [TypeError: " + getNonFunctionMessage(/a/g) + "] message: '" + getNonFunctionMessage(/a/g) + "' }\n"
8888
+ ' ...\n'
8989
+ 'not ok 7 should throw\n'
9090
+ ' ---\n'
9191
+ ' operator: throws\n'
92-
+ ' expected: |-\n'
92+
+ ' expected:\n'
9393
+ ' undefined\n'
94-
+ ' actual: |-\n'
94+
+ ' actual:\n'
9595
+ " { [TypeError: " + getNonFunctionMessage([]) + "] message: '" + getNonFunctionMessage([]) + "' }\n"
9696
+ ' ...\n'
9797
+ 'not ok 8 should throw\n'
9898
+ ' ---\n'
9999
+ ' operator: throws\n'
100-
+ ' expected: |-\n'
100+
+ ' expected:\n'
101101
+ ' undefined\n'
102-
+ ' actual: |-\n'
102+
+ ' actual:\n'
103103
+ " { [TypeError: " + getNonFunctionMessage({}) + "] message: '" + getNonFunctionMessage({}) + "' }\n"
104104
+ ' ...\n'
105105
+ '# function\n'

0 commit comments

Comments
 (0)