]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/model.py
más cleanup de detalles de presentación.
[z.facultad/75.52/sercom.git] / sercom / model.py
index 7cb1880dd31f964820c256b9ba8cdaf4fc025e72..3794c4a1346529831d453b84db01ebbb71d70cb1 100644 (file)
@@ -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())
 #}}}