Skip to content

Commit b8ed0f5

Browse files
committed
Tests pass
1 parent 0b4e232 commit b8ed0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/specification_tests/test_variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Var(Variable):
135135

136136
def test_copy(self):
137137
ip = Input("ip", float, norm)
138-
self.assertNotEqual(ip.copy(), ip)
138+
self.assertTrue(ip.copy() is not ip)
139139
self.assertEqual(ip.copy().name, ip.name)
140140
self.assertEqual(ip.copy().datatype, ip.datatype)
141141
self.assertEqual(ip.copy().distribution, ip.distribution)

0 commit comments

Comments
 (0)