From b7406919dc7c6c816b334c432f8f19d01b4f5579 Mon Sep 17 00:00:00 2001 From: anuja Date: Fri, 11 Oct 2024 07:53:59 +0530 Subject: [PATCH 1/2] commiting to correct function call --- 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 2c9d9d9..407475c 100644 --- a/tests/sherlock_interactives.py +++ b/tests/sherlock_interactives.py @@ -7,7 +7,7 @@ class Interactives: def run_cli(args:str = "") -> str: """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": + if platform.system() == "Windows": command:str = f"py -m sherlock {args}" else: command:str = f"sherlock {args}" From 3f1f2534a341743019b785258e7325cb3c340894 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Fri, 1 Nov 2024 04:29:23 -0400 Subject: [PATCH 2/2] 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}"