We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac10c26 commit 1840b29Copy full SHA for 1840b29
1 file changed
q2cli/tests/test_tools.py
@@ -1347,19 +1347,24 @@ def test_replay_action_not_found(self):
1347
with open(out_fp, 'r') as fh:
1348
rendered = fh.read()
1349
1350
- imports = \
+ import1 = \
1351
"""
1352
qiime tools import \\
1353
--type 'Phylogeny[Rooted]' \\
1354
--input-path <your data here> \\
1355
--output-path phylogeny-rooted-0.qza
1356
+""" # noqa: E128
1357
1358
+ import2 = \
1359
+"""
1360
1361
--type 'FeatureTable[Frequency]' \\
1362
1363
--output-path feature-table-frequency-0.qza
1364
""" # noqa: E128
- self.assertIn(imports, rendered)
1365
+
1366
+ self.assertIn(import1, rendered)
1367
+ self.assertIn(import2, rendered)
1368
1369
FIXME_action = \
1370
0 commit comments