Skip to content

Commit f97989e

Browse files
committed
standard
1 parent ef2c419 commit f97989e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/unit/verify/index.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Double from '../../../src/value/double'
22
import Call from '../../../src/value/call'
33

44
let subject, popDemonstration, didCallOccur, notifySatisfiedMatchers,
5-
warnIfAlsoStubbed, fail
5+
warnIfAlsoStubbed, fail
66
module.exports = {
77
beforeEach: () => {
88
popDemonstration = td.replace('../../../src/verify/pop-demonstration').default
@@ -19,7 +19,7 @@ module.exports = {
1919
td.when(popDemonstration()).thenReturn({double, call})
2020
td.when(didCallOccur(double, call, config)).thenReturn(true)
2121

22-
subject(/*imagine double('a','b','c')*/ undefined, config)
22+
subject(/* imagine double('a','b','c') */ undefined, config)
2323

2424
td.verify(notifySatisfiedMatchers(double, call, config))
2525
td.verify(warnIfAlsoStubbed(double, call, config))
@@ -32,7 +32,7 @@ module.exports = {
3232
td.when(popDemonstration()).thenReturn({double, call})
3333
td.when(didCallOccur(double, call, config)).thenReturn(false)
3434

35-
subject(/*imagine double('a','b','X')*/ undefined, config)
35+
subject(/* imagine double('a','b','X') */ undefined, config)
3636

3737
td.verify(fail(double, call, config))
3838
assert.equal(td.explain(notifySatisfiedMatchers).callCount, 0)
@@ -43,7 +43,7 @@ module.exports = {
4343
td.when(popDemonstration()).thenThrow(new Error('wups'))
4444

4545
assert.throws(() => {
46-
subject(/*imagine double('a','b','X')*/ undefined, config)
46+
subject(/* imagine double('a','b','X') */ undefined, config)
4747
}, /wups/)
4848

4949
assert.equal(td.explain(notifySatisfiedMatchers).callCount, 0)

0 commit comments

Comments
 (0)