diff upreckon/testcases.py @ 217:ce1285728952

Fixed the signature of @abstractmethod TestCase.test
author Oleg Oshmyan <chortos@inbox.lv>
date Sun, 21 Aug 2011 01:24:29 +0300
parents ede78fbd509a
children 65b5c9390010
line wrap: on
line diff
--- a/upreckon/testcases.py	Thu Aug 18 22:49:02 2011 +0300
+++ b/upreckon/testcases.py	Sun Aug 21 01:24:29 2011 +0300
@@ -113,7 +113,7 @@
 			case.realoutname = case.problem.config.dummyoutname
 	
 	@abstractmethod
-	def test(case):
+	def test(case, callback):
 		raise NotImplementedError
 	
 	def __call__(case, callback):