From 32a37f832fec53a73a17d22519ceb715b26ab00f Mon Sep 17 00:00:00 2001
From: chausman <chausman@nrao.edu>
Date: Wed, 29 May 2024 10:40:51 -0600
Subject: [PATCH] fix test

---
 apps/cli/executables/pexable/casa_envoy/test/test_foundation.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/cli/executables/pexable/casa_envoy/test/test_foundation.py b/apps/cli/executables/pexable/casa_envoy/test/test_foundation.py
index 24e348069..dc70ed188 100644
--- a/apps/cli/executables/pexable/casa_envoy/test/test_foundation.py
+++ b/apps/cli/executables/pexable/casa_envoy/test/test_foundation.py
@@ -85,7 +85,7 @@ class TestGeneralFoundation:
     @patch("pathlib.Path.glob", return_value=["TSKY0001_split.flagtargetstemplate.txt"])
     @patch("pathlib.Path.exists", return_value=True)
     @patch("shutil.copy")
-    def test_general_copy_into_rawdata(self, mock_copy, mock_exists, mock_glob):
+    def test_general_copy_into_rawdata(self, mock_copy, mock_exists, mock_glob, general):
         general.copy_into_rawdata()
         assert mock_exists.call_count == 1
         assert mock_copy.call_count == 1
-- 
GitLab