| OLD | NEW |
| 1 from boto.mturk.test.support import unittest | 1 from boto.mturk.test.support import unittest |
| 2 | 2 |
| 3 from common import MTurkCommon | 3 from common import MTurkCommon |
| 4 from boto.mturk.connection import MTurkRequestError | 4 from boto.mturk.connection import MTurkRequestError |
| 5 | 5 |
| 6 class TestDisableHITs(MTurkCommon): | 6 class TestDisableHITs(MTurkCommon): |
| 7 def test_disable_invalid_hit(self): | 7 def test_disable_invalid_hit(self): |
| 8 self.assertRaises(MTurkRequestError, self.conn.disable_hit, 'foo
') | 8 self.assertRaises(MTurkRequestError, self.conn.disable_hit, 'foo
') |
| 9 | 9 |
| 10 if __name__ == '__main__': | 10 if __name__ == '__main__': |
| 11 unittest.main() | 11 unittest.main() |
| OLD | NEW |