Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: replaced string concatention with template literal
  • Loading branch information
chrisbudy committed Oct 6, 2017
commit 3358ee241a86c8b6125bf705fa94d0fa6a2d46b5
2 changes: 1 addition & 1 deletion test/parallel/test-repl-persistent-history.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const oldHistoryObj = '\nError: The old history file data has to be an Array' +
'.\nREPL session history will not be persisted.\n';
const sameHistoryFilePaths = '\nThe old repl history file has the same name ' +
'and location as the new one i.e., ' +
path.join(common.tmpDir, '.node_repl_history') +
`${path.join(common.tmpDir, '.node_repl_history')}` +
' and is empty.\nUsing it as is.\n';
// File paths
const fixtures = common.fixturesDir;
Expand Down