Skip to content

Commit

Permalink
Don't use pydevd helpers in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Minaev authored and int19h committed Dec 18, 2023
1 parent a15a1ce commit 479b8c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/patterns/_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -183,8 +183,8 @@ def matches(self, other):
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


Expand Down

0 comments on commit 479b8c4

Please sign in to comment.