##// END OF EJS Templates
tests: fix integration test wrong named variable
dan -
r436:6048dd9a default
parent child Browse files
Show More
@@ -70,9 +70,9 b' def global_integration_stub(request):'
70 return integration
70 return integration
71
71
72
72
73 def test_delete_repo_with_integration_deletes_integration(repo_integration):
73 def test_delete_repo_with_integration_deletes_integration(repo_integration_stub):
74 Session().delete(repo_integration.repo)
74 Session().delete(repo_integration_stub.repo)
75 Session().commit()
75 Session().commit()
76 Session().expire_all()
76 Session().expire_all()
77 assert Integration.get(repo_integration.integration_id) is None
77 assert Integration.get(repo_integration_stub.integration_id) is None
78
78
General Comments 0
You need to be logged in to leave comments. Login now