Skip to content

Commit

Permalink
test tests failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mathemancer committed Oct 24, 2023
1 parent f260d00 commit 707518e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/handle-required-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
name: handle-required-checks
on: [pull_request, merge_group]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- run: 'echo "No tests required"'
lint:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion mathesar/tests/api/test_table_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,7 @@ def test_table_extract_columns_retain_original_table(create_patents_table, clien
response_data = current_table_response.json()
extracted_table_id = response_data['extracted_table']
extracted_table = Table.objects.get(id=extracted_table_id)
assert extract_table_name == extracted_table.name
assert extract_table_name == extracted_table.name + 'a'
remainder_table_id = response_data['remainder_table']
remainder_table = Table.objects.get(id=remainder_table_id)
assert Table.objects.filter(id=table.id).count() == 1
Expand Down

0 comments on commit 707518e

Please sign in to comment.