Skip to content

Commit

Permalink
chore: unmark test_binary_search as xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
luochen1990 committed Aug 7, 2024
1 parent ea04b5b commit fa25797
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/examples/ai_powered_decorator/binary_search.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pytest
from ai_powered import ai_powered

@ai_powered
Expand All @@ -10,7 +9,6 @@ def binary_search(arr: list[int], x: int) -> int:
'''
...

@pytest.mark.xfail(reason="Not Stable")
def test_binary_search():
assert binary_search([10, 20, 100, 103, 104, 105], 103) == 3
assert binary_search([1, 2, 100, 103, 104, 105], 2) == 1

0 comments on commit fa25797

Please sign in to comment.