-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modifiy 'tests/org/tests_edit_org_api.py' and add 'super(EditOrgTestCase,self).tearDown()' function at the end. #101
Comments
tests/org/tests_edit_org_api.py
and add super(EditOrgTestCase,self).tearDown()
function at the end.
I am not very much sure that I will be able to fix the issue easily but I want to have a try. |
This above function call deletes the |
@sahil9001 sir Or this should be added at the last |
Yes, that's what you want to do here. Just replace |
Sorry 😓 Good first issues are reserved for FIRST TIME CONTRIBUTORSSince, @adityatiwar1 has already contributed to this repository by solving #113 with #126 , he isn't eligible to work on this. Sorry to let you down. |
Is your feature request related to a problem? Please describe.
Currently the
def tearDown(self):
function only deletes theauth_user
after each test but we want to delete whole objects created bysetUp(self) and super class setUp()
.Describe the solution you'd like
Call
super(EditOrgTestCase,self).tearDown()
in tests/org/tests_edit_org_api.py in tearDown(). Also make other appropriate changes to tearDown() as needed.The text was updated successfully, but these errors were encountered: