Skip to content

Commit

Permalink
Windows path fail fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ntoll committed Mar 21, 2019
1 parent 3393a2c commit a5ba6f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/interface/test_dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ def test_PackageDialog_remove_package_end_state():
pd.remove_package()
assert mock_shutil.rmtree.call_count == 2
call_args = mock_shutil.rmtree.call_args_list
assert call_args[0][0][0] == 'foo/bar'
assert call_args[1][0][0] == 'foo/bin'
assert call_args[0][0][0] == os.path.join('foo', 'bar')
assert call_args[1][0][0] == os.path.join('foo', 'bin')
pd.end_state.assert_called_once_with()


Expand Down

0 comments on commit a5ba6f1

Please sign in to comment.