We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838046c commit a7b4bd2Copy full SHA for a7b4bd2
1 file changed
unittests/test_validators.py
@@ -321,19 +321,20 @@ def test_VSIntegerProperty(self):
321
t = VSIntegerProperty("Test")
322
self.assertEqual(t.name, "Test")
323
self.assertIs(t.value, None)
324
- self.assertIs(t.switch, None)
+ #self.assertIs(t.switch, None)
325
326
- t = VSIntegerProperty("Test", switch="/Foo")
+ #t = VSIntegerProperty("Test", switch="/Foo")
327
+ t = VSIntegerProperty("Test")
328
329
- self.assertEqual(t.switch, "/Foo")
330
+ #self.assertEqual(t.switch, "/Foo")
331
332
t = VSIntegerProperty("Test", 33)
333
334
335
# Use Equal, Python 2.7 returns 33L so is doesn't match
336
self.assertEqual(t.value, 33)
337
338
339
# Failure cases
340
with self.assertRaises(ValueError):
0 commit comments