10000 Remove bad code. · masteramuk/examples@1aa07c7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1aa07c7

Browse files
committed
Remove bad code.
1 parent 162a721 commit 1aa07c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assertion-testing/tests/default.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ TEST('controller.increment()', function() {
55
TEST('Test URL 1', '/1/', function(builder) {
66
builder.get();
77
builder.exec(function(err, response, output) {
8-
FAIL(output.response !== '1', name);
8+
FAIL(output.response !== '1');
99
});
1010
});
1111

1212
TEST('Test URL 2', '/2/', function(builder) {
1313
builder.get();
1414
builder.exec(function(err, response, output) {
15-
FAIL(output.response !== '2', name);
15+
FAIL(output.response !== '2');
1616
});
1717
});
1818

1919
TEST('Test URL 3', '/3/', function(builder) {
2020
builder.json({ data: 4 });
2121
builder.exec(function(err, response) {
22-
FAIL(response.data !== 3, name);
22+
FAIL(response.data !== 3);
2323
});
2424
});

0 commit comments

Comments
 (0)
0