Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Apr 9, 2020
1 parent d3ae727 commit 1c0b856
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ipykernel/tests/test_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import ast
import io
import os.path
import platform
import sys
import time

Expand Down Expand Up @@ -324,7 +323,7 @@ def test_unc_paths():
drive_file_path = os.path.join(td, 'unc.txt')
with open(drive_file_path, 'w+') as f:
f.write('# UNC test')
unc_root = '\\\\{0:s}'.format(platform.node())
unc_root = '\\\\localhost\\C$'
file_path = os.path.splitdrive(os.path.dirname(drive_file_path))[1]
unc_file_path = os.path.join(unc_root, file_path[1:])

Expand Down

0 comments on commit 1c0b856

Please sign in to comment.