mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Don't use pydevd helpers in tests.
This commit is contained in:
parent
a15a1ce400
commit
303d2ee1f1
1 changed files with 3 additions and 3 deletions
|
|
@ -8,12 +8,12 @@
|
|||
|
||||
import collections
|
||||
import itertools
|
||||
import pathlib
|
||||
import py.path
|
||||
import re
|
||||
import sys
|
||||
|
||||
from debugpy.common import util
|
||||
import pydevd_file_utils
|
||||
|
||||
|
||||
class Some(object):
|
||||
|
|
@ -183,8 +183,8 @@ class Path(Some):
|
|||
else:
|
||||
return NotImplemented
|
||||
|
||||
left = pydevd_file_utils.get_path_with_real_case(self.path)
|
||||
right = pydevd_file_utils.get_path_with_real_case(other)
|
||||
left = pathlib.Path(self.path).resolve()
|
||||
right = pathlib.Path(other).resolve()
|
||||
return left == right
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue