From: Leandro Lucarella Date: Sat, 17 Mar 2007 20:51:54 +0000 (+0000) Subject: Bugfix: ComandoPrueba no tiene Entrega. X-Git-Tag: 0_9_0~51 X-Git-Url: https://git.llucax.com/software/sercom.git/commitdiff_plain/decd8fb6844b9a657c9c3c57fc83078aa54959b6?ds=inline Bugfix: ComandoPrueba no tiene Entrega. --- diff --git a/sercom/model.py b/sercom/model.py index 7cb1880..3794c4a 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -884,11 +884,11 @@ class ComandoPruebaEjecutado(ComandoEjecutado): #{{{ def __repr__(self): return super(ComandoPruebaEjecutado, self).__repr__( - 'comando=%s, entrega=%s' % (self.comando.shortrepr(), - self.entrega.shortrepr())) + 'comando=%s, prueba=%s' % (self.comando.shortrepr(), + self.prueba.shortrepr())) def shortrepr(self): - return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrepr(), + return '%s:%s:%s' % (self.tarea.shortrepr(), self.prueba.shortrepr(), self.caso_de_prueba.shortrepr()) #}}}