Skip to content

Commit

Permalink
changed ../.. to .. in scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanishpatel512 authored Jun 5, 2024
1 parent 9badd34 commit 64cf8d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions final/src/test_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def scanner():
return Scanner(
path=os.path.abspath(
os.path.join(
os.path.dirname(__file__), "../..",
os.path.dirname(__file__), "..",
"doc", "net_definition", "circuit1.txt")),
names_map=Names(),
devices_map=Names(["CLOCK", "SWITCH", "AND", "NAND",
Expand All @@ -24,7 +24,7 @@ def scanner():
def scanner_fault():
return Scanner(
path=os.path.abspath(os.path.join(os.path.dirname(__file__),
"../..", "doc", "net_definition",
"..", "doc", "net_definition",
"test_errors_circuit1.txt")),
names_map=Names(),
devices_map=Names(["CLOCK", "SWITCH", "AND", "NAND",
Expand Down

0 comments on commit 64cf8d4

Please sign in to comment.