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 a565ab9 commit 4dab9daCopy full SHA for 4dab9da
tests/stub/authorization.py
@@ -238,7 +238,8 @@ def test_should_fail_with_auth_expired_on_pull_using_session_run(
238
239
session = driver.session('r', database=self.get_db())
240
try:
241
- session.run("RETURN 1 as n")
+ result = session.run("RETURN 1 as n")
242
+ result.consume()
243
except types.DriverError as e:
244
self.assert_is_authorization_error(error=e)
245
session.close()
0 commit comments