Skip to content

Commit 46d5402

Browse files
committed
Changed name of value comparison class
1 parent 5187105 commit 46d5402

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/tck/tck_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Type:
7979
NULL = "Null"
8080

8181

82-
class Value:
82+
class TestValue:
8383
content = None
8484

8585
def __init__(self, entity):
@@ -100,7 +100,7 @@ def __hash__(self):
100100
return hash(repr(self))
101101

102102
def __eq__(self, other):
103-
assert isinstance(other, Value)
103+
assert isinstance(other, TestValue)
104104
return self.content == other.content
105105

106106
def __repr__(self):

0 commit comments

Comments
 (0)