Skip to content

Commit cf3486f

Browse files
committed
remove incorrect case
1 parent cfefa40 commit cf3486f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
version = "pyre 0.9.21"
2-
test_duration = 1.7
2+
test_duration = 2.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
version = "pytype 2024.04.11"
2-
test_duration = 27.6
2+
test_duration = 27.3

conformance/results/results.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ <h3>Python Type System Conformance Test Results</h3>
165165
<div class='tc-time'>1.3sec</div>
166166
</th>
167167
<th class='tc-header'><div class='tc-name'>pyre 0.9.21</div>
168-
<div class='tc-time'>1.7sec</div>
168+
<div class='tc-time'>2.3sec</div>
169169
</th>
170170
<th class='tc-header'><div class='tc-name'>pytype 2024.04.11</div>
171-
<div class='tc-time'>27.6sec</div>
171+
<div class='tc-time'>27.3sec</div>
172172
</th>
173173
</tr>
174174
<tr><th class="column" colspan="5">

conformance/tests/specialtypes_promotions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def func1(f: float):
1515
f.numerator # E: attribute exists on int but not float
1616

1717
if isinstance(f, float):
18-
assert_type(f, float)
18+
f.hex() # OK (attribute exists on float but not int)
1919
else:
2020
assert_type(f, int)
2121

0 commit comments

Comments
 (0)