Skip to content

Commit 5da37f5

Browse files
committed
Python: Update test expectations
1 parent a963f15 commit 5da37f5

File tree

2 files changed

+165
-180
lines changed

2 files changed

+165
-180
lines changed

python/ql/test/experimental/dataflow/coverage/classes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ def __trunc__(self):
11971197
def test_trunc():
11981198
with_trunc = With_trunc()
11991199
import math
1200-
math.trunc(with_trunc) # edit to effect call
1200+
math.trunc(with_trunc)
12011201

12021202
# object.__floor__(self)
12031203
class With_floor:
@@ -1209,7 +1209,7 @@ def __floor__(self):
12091209
def test_floor():
12101210
with_floor = With_floor()
12111211
import math
1212-
math.floor(with_floor) # edit to effect call
1212+
math.floor(with_floor)
12131213

12141214
# object.__ceil__(self)
12151215
class With_ceil:
@@ -1221,7 +1221,7 @@ def __ceil__(self):
12211221
def test_ceil():
12221222
with_ceil = With_ceil()
12231223
import math
1224-
math.ceil(with_ceil) # edit to effect call
1224+
math.ceil(with_ceil)
12251225

12261226

12271227
# 3.3.9. With Statement Context Managers

0 commit comments

Comments
 (0)