mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -04:00
tests: remove __gt__ asserts from test_shaderinput_vector_compare
This fails in Python 2, and we don't actually provide this operator or make any guarantees about greater-than ordering, so it was silly to test for it to begin with.
This commit is contained in:
parent
135931c926
commit
cef70a4fe5
@ -30,15 +30,3 @@ def test_shaderinput_vector_compare():
|
|||||||
assert i1 < i2
|
assert i1 < i2
|
||||||
assert i2 < i3
|
assert i2 < i3
|
||||||
assert i1 < i3
|
assert i1 < i3
|
||||||
|
|
||||||
assert not i0 > i0
|
|
||||||
assert not i1 > i1
|
|
||||||
assert not i2 > i2
|
|
||||||
assert not i3 > i3
|
|
||||||
|
|
||||||
assert i3 > i1
|
|
||||||
assert i2 > i1
|
|
||||||
assert i3 > i2
|
|
||||||
assert i1 > i0
|
|
||||||
assert i2 > i0
|
|
||||||
assert i3 > i0
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user