diff --git a/runtest.py b/runtest.py index bc6b11f..3219f40 100755 --- a/runtest.py +++ b/runtest.py @@ -49,7 +49,7 @@ def println(s: str = "") -> None: println(styled.h1("2. Type Checking")) try: - subprocess.run(["./node_modules/.bin/pyright"], check=True) + subprocess.run(["npx", "pyright"], check=True) except subprocess.CalledProcessError: println(styled.failure("prettypretty failed to type check!")) exit(1) diff --git a/test/runtime.py b/test/runtime.py index 57e7d5c..40246d5 100644 --- a/test/runtime.py +++ b/test/runtime.py @@ -32,7 +32,7 @@ class Symbols: UNICODE_SYMBOLS = Symbols('═', '━', '─', '•', '⋅') -ASCII_SYMBOLS = Symbols('=', '-', '~', '.', '.') +ASCII_SYMBOLS = Symbols('=', '=', '-', '.', '.') SYMBOLS = ASCII_SYMBOLS if os.name == 'nt' else UNICODE_SYMBOLS # --------------------------------------------------------------------------------------