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):
870870 OK ()
871871 return self
872872
873- def ftest_rlshift (): # TypeError: unsupported operand type(s) for >>: 'str' and 'With_rlshift'
873+ def test_rlshift ():
874874 with_rlshift = With_rlshift ()
875- "" >> with_rlshift
875+ "" << with_rlshift
876876
877877# object.__rrshift__(self, other)
878878class With_rrshift :
@@ -881,9 +881,9 @@ def __rrshift__(self, other):
881881 OK ()
882882 return self
883883
884- def ftest_rrshift (): # TypeError: unsupported operand type(s) for <<: 'str' and 'With_rrshift'
884+ def test_rrshift ():
885885 with_rrshift = With_rrshift ()
886- "" << with_rrshift
886+ "" >> with_rrshift
887887
888888# object.__rand__(self, other)
889889class With_rand :
You can’t perform that action at this time.
0 commit comments