From 3f1f2534a341743019b785258e7325cb3c340894 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Fri, 1 Nov 2024 04:29:23 -0400 Subject: [PATCH] Update tests/sherlock_interactives.py --- tests/sherlock_interactives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sherlock_interactives.py b/tests/sherlock_interactives.py index 407475c..9f99c50 100644 --- a/tests/sherlock_interactives.py +++ b/tests/sherlock_interactives.py @@ -8,7 +8,7 @@ class Interactives: """Pass arguments to Sherlock as a normal user on the command line""" # Adapt for platform differences (Windows likes to be special) if platform.system() == "Windows": - command:str = f"py -m sherlock {args}" + command:str = f"py -m sherlock_project {args}" else: command:str = f"sherlock {args}"