Skip to content

Commit c811267

Browse files
committed
Fix path
1 parent 87deb45 commit c811267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/snippets/test/test.cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tape( 'when invoked with a `--help` flag, the command-line interface prints the
3434
var expected;
3535
var cmd;
3636

37-
expected = readFileSync( resolve( __dirname, '..', 'bin', 'usage.txt' ), {
37+
expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), {
3838
'encoding': 'utf8'
3939
});
4040
cmd = [
@@ -60,7 +60,7 @@ tape( 'when invoked with a `-h` flag, the command-line interface prints the help
6060
var expected;
6161
var cmd;
6262

63-
expected = readFileSync( resolve( __dirname, '..', 'bin', 'usage.txt' ), {
63+
expected = readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), {
6464
'encoding': 'utf8'
6565
});
6666
cmd = [

0 commit comments

Comments
 (0)