Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Oct 15, 2024
1 parent 20453a2 commit 152060c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
from dagster_graphql.schema.backfill import (
GrapheneAssetPartitions,
GrapheneCancelBackfillSuccess,
GrapheneDeleteBackfillSuccess,
GrapheneLaunchBackfillSuccess,
GrapheneResumeBackfillSuccess,
)
from dagster_graphql.schema.errors import GraphenePartitionSetNotFoundError
from dagster_graphql.schema.roots.mutation import GrapheneDeleteBackfillSuccess
from dagster_graphql.schema.util import ResolveInfo


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2382,6 +2382,6 @@ def test_delete_asset_backfill(self, graphql_context):
if result.data["deletePartitionBackfill"]["__typename"] == "PythonError":
assert False, result.data["deletePartitionBackfill"]["message"]
assert result.data["deletePartitionBackfill"]["__typename"] == "DeleteBackfillSuccess"
assert backfill_id == result.data["reexecutePartitionBackfill"]["backfillId"]
assert backfill_id == result.data["deletePartitionBackfill"]["backfillId"]

assert graphql_context.instance.get_backfill(backfill_id) is None

0 comments on commit 152060c

Please sign in to comment.