Skip to content

Commit

Permalink
fixt two tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Dec 11, 2023
1 parent d739af7 commit a3b859b
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 @@ -807,7 +807,7 @@ def bind(
return self

def unbind(self):
self._op_execution_context = self._op_execution_context.unbind()
self._op_execution_context.unbind()

@property
def bound_properties(self) -> BoundProperties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ async def main():
with pytest.raises(
DagsterInvalidInvocationError,
match=r"This context is currently being used to execute .* The context"
r" cannot be used to execute another op until .* has finished executing",
r" cannot be used to execute another asset until .* has finished executing",
):
asyncio.run(main())

Expand Down

0 comments on commit a3b859b

Please sign in to comment.