Skip to content

Commit a52d6ca

Browse files
authored
Merge pull request #21122 from mvdbeek/fix_down_revision_drop_job_params
Drop down revision for drop_job_params migration
2 parents 0420a1d + c581747 commit a52d6ca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/galaxy/model/migrations/alembic/versions_gxy/a5c5455b849a_drop_job_params_column.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Drop Job.params column
22
33
Revision ID: a5c5455b849a
4-
Revises: e382f8eb5e12
4+
Revises: cd26484899fb
55
Create Date: 2025-10-15 16:13:14.778789
66
77
"""
@@ -16,7 +16,7 @@
1616

1717
# revision identifiers, used by Alembic.
1818
revision = "a5c5455b849a"
19-
down_revision = "e382f8eb5e12"
19+
down_revision = "cd26484899fb"
2020
branch_labels = None
2121
depends_on = None
2222

lib/galaxy_test/api/test_workflows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3809,7 +3809,7 @@ def filter_jobs_by_tool(tool_id):
38093809
assert len(filter_jobs_by_tool("__KEEP_SUCCESS_DATASETS__")) == 1, jobs
38103810
# Follow proves one job was filtered out of the exit_code_from_file
38113811
# And a single one has been sent to cat1
3812-
assert len(filter_jobs_by_tool("cat1")) == 1, jobs
3812+
assert len(filter_jobs_by_tool("cat")) == 1, jobs
38133813

38143814
def test_keep_success_mapping_paused(self):
38153815
with self.dataset_populator.test_history() as history_id:

0 commit comments

Comments
 (0)