Skip to content

Commit

Permalink
0x0(0,1,2) - Relocate Test Files
Browse files Browse the repository at this point in the history
  • Loading branch information
uosyph committed Dec 20, 2023
1 parent 017d16b commit 2b169fc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
"""
0-main
"""
import sys
import os

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))

pascal_triangle = __import__("0-pascal_triangle").pascal_triangle

Expand Down
5 changes: 0 additions & 5 deletions 0x01-lockboxes/tests/0-main.py → 0x01-lockboxes/0-main.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/usr/bin/python3

import sys
import os

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))

canUnlockAll = __import__('0-lockboxes').canUnlockAll

boxes = [[1], [2], [3], [4], []]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
Main file for testing
"""

import sys
import os

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))

minOperations = __import__('0-minoperations').minOperations

n = 4
Expand Down

0 comments on commit 2b169fc

Please sign in to comment.