~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: William Grant
  • Date: 2009-12-15 04:53:41 UTC
  • Revision ID: me@williamgrant.id.au-20091215045341-aj50uc97k9hz31p0
Fix deletion of test suites with variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
971
971
 
972
972
    def delete(self):
973
973
        """Delete this suite, without asking questions."""
974
 
        for vaariable in self.variables:
 
974
        for variable in self.variables:
975
975
            variable.delete()
976
976
        for test_case in self.test_cases:
977
977
            test_case.delete()