Skip to content

Commit

Permalink
use node instead of nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Nov 3, 2020
1 parent f5e290c commit c53427d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/nodeenv_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_smoke(tmpdir):
assert os.path.exists(nenv_path)
activate = pipes.quote(os.path.join(nenv_path, 'bin', 'activate'))
subprocess.check_call([
'sh', '-c', '. {} && nodejs --version'.format(activate),
'sh', '-c', '. {} && node --version'.format(activate),
])


Expand All @@ -42,7 +42,7 @@ def test_smoke_n_system_special_chars(tmpdir):
assert os.path.exists(nenv_path)
activate = pipes.quote(os.path.join(nenv_path, 'bin', 'activate'))
subprocess.check_call([
'sh', '-c', '. {} && nodejs --version'.format(activate),
'sh', '-c', '. {} && node --version'.format(activate),
])


Expand Down

0 comments on commit c53427d

Please sign in to comment.