Skip to content

Commit b1b03f2

Browse files
committed
remove spurious trailing space in t.end error message
1 parent 43bfda5 commit b1b03f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Object.defineProperty(Test.prototype, 'end', {
203203
return this._end.bind(this);
204204
}
205205

206-
throw new Error('t.end is not supported in this context. To use t.end as a callback, you must use "callback mode" via `test.cb(testName, fn)` ');
206+
throw new Error('t.end is not supported in this context. To use t.end as a callback, you must use "callback mode" via `test.cb(testName, fn)`');
207207
}
208208
});
209209

0 commit comments

Comments
 (0)