From 5e4a45f6364222faf108486230305b133c3b3f3a Mon Sep 17 00:00:00 2001 From: Oddant1 Date: Tue, 10 Feb 2026 11:36:32 -0700 Subject: [PATCH] Change qiime2 to rachis in usage example matches --- q2cli/tests/test_tools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/q2cli/tests/test_tools.py b/q2cli/tests/test_tools.py index 0bafc8db..047b242c 100644 --- a/q2cli/tests/test_tools.py +++ b/q2cli/tests/test_tools.py @@ -1076,7 +1076,7 @@ def test_replay_provenance_python(self): with open(out_fp, 'r') as fh: rendered = fh.read() - self.assertIn('from qiime2 import Artifact', rendered) + self.assertIn('from rachis import Artifact', rendered) self.assertIn('Artifact.import_data', rendered) self.assertIn('dummy_plugin_actions.concatenate_ints', rendered) @@ -1144,7 +1144,7 @@ def test_replay_citations(self): # use .*? to non-greedily match version strings exp = [ r'action\|dummy-plugin:.*?\|method:concatenate_ints\|0', - r'framework\|qiime2:.*?\|0', + r'framework\|rachis:.*?\|0', r'plugin\|dummy-plugin:.*?\|0', r'plugin\|dummy-plugin:.*?\|1', r'transformer\|dummy-plugin:.*?\|builtins:list->' @@ -1185,7 +1185,7 @@ def test_replay_citations_no_deduplicate(self): with open(out_fp) as fh: file_contents = fh.read() framework_citations = \ - re.compile(r'framework\|qiime2:.*?\|0.*' * 4, re.DOTALL) + re.compile(r'framework\|rachis:.*?\|0.*' * 4, re.DOTALL) self.assertRegex(file_contents, framework_citations) def test_replay_supplement(self):