Skip to content

Commit dfb92f0

Browse files
committed
Update the test file
1 parent 1d2897f commit dfb92f0

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

test.patch

-1.13 KB
Binary file not shown.

test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ cd /app
55
OUTPUT_PATH=""
66
MODE=""
77

8-
# Parse arguments: --output_path <path> then mode
98
while [[ $# -gt 0 ]]; do
109
case "$1" in
1110
--output_path)

tests/test_binary_search_duplicates.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from simple_binary_search import binary_search
1+
from searches.simple_binary_search import binary_search
22

33

44
def test_binary_search_leftmost_duplicate():
@@ -15,3 +15,4 @@ def test_binary_search_not_found():
1515

1616
def test_binary_search_single_element():
1717
assert binary_search([5], 5) == 0
18+

0 commit comments

Comments
 (0)