File tree Expand file tree Collapse file tree 2 files changed +165
-180
lines changed
python/ql/test/experimental/dataflow/coverage Expand file tree Collapse file tree 2 files changed +165
-180
lines changed Original file line number Diff line number Diff line change @@ -1197,7 +1197,7 @@ def __trunc__(self):
1197
1197
def test_trunc ():
1198
1198
with_trunc = With_trunc ()
1199
1199
import math
1200
- math .trunc (with_trunc ) # edit to effect call
1200
+ math .trunc (with_trunc )
1201
1201
1202
1202
# object.__floor__(self)
1203
1203
class With_floor :
@@ -1209,7 +1209,7 @@ def __floor__(self):
1209
1209
def test_floor ():
1210
1210
with_floor = With_floor ()
1211
1211
import math
1212
- math .floor (with_floor ) # edit to effect call
1212
+ math .floor (with_floor )
1213
1213
1214
1214
# object.__ceil__(self)
1215
1215
class With_ceil :
@@ -1221,7 +1221,7 @@ def __ceil__(self):
1221
1221
def test_ceil ():
1222
1222
with_ceil = With_ceil ()
1223
1223
import math
1224
- math .ceil (with_ceil ) # edit to effect call
1224
+ math .ceil (with_ceil )
1225
1225
1226
1226
1227
1227
# 3.3.9. With Statement Context Managers
You can’t perform that action at this time.
0 commit comments