Skip to content
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion IPython/nbconvert/filters/tests/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import os

from IPython.testing import decorators as dec
from ...tests.base import TestsBase
Expand Down Expand Up @@ -122,6 +123,6 @@ def test_ipython2python(self):
def test_posix_path(self):
path_list = ['foo', 'bar']
expected = '/'.join(path_list)
native = os.path.join(path_list)
native = os.path.join(*path_list)
filtered = posix_path(native)
self.assertEqual(filtered, expected)