File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
python/ql/test/experimental/dataflow/coverage Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -870,9 +870,9 @@ def __rlshift__(self, other):
870
870
OK ()
871
871
return self
872
872
873
- def ftest_rlshift (): # TypeError: unsupported operand type(s) for >>: 'str' and 'With_rlshift'
873
+ def test_rlshift ():
874
874
with_rlshift = With_rlshift ()
875
- "" >> with_rlshift
875
+ "" << with_rlshift
876
876
877
877
# object.__rrshift__(self, other)
878
878
class With_rrshift :
@@ -881,9 +881,9 @@ def __rrshift__(self, other):
881
881
OK ()
882
882
return self
883
883
884
- def ftest_rrshift (): # TypeError: unsupported operand type(s) for <<: 'str' and 'With_rrshift'
884
+ def test_rrshift ():
885
885
with_rrshift = With_rrshift ()
886
- "" << with_rrshift
886
+ "" >> with_rrshift
887
887
888
888
# object.__rand__(self, other)
889
889
class With_rand :
You can’t perform that action at this time.
0 commit comments