diff Agendas/trunk/src/Agendas.Tests/TrackTests.cs @ 75:96d7609f2e08

Agendar evento propuesto
author nelopauselli
date Mon, 23 May 2011 20:43:01 -0300
parents bc46e7426c80
children c2d98fd6593f
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Tests/TrackTests.cs	Mon May 23 20:13:37 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Tests/TrackTests.cs	Mon May 23 20:43:01 2011 -0300
@@ -24,11 +24,11 @@
 			Assert.AreEqual(1, evento.Tracks.Count());
 			Assert.AreEqual(Accion.Agendar, evento.Tracks.Last().Accion);
 
-			agenda.ModificarEvento(evento.Id, "Html 5", "otro ponente", fecha);
+			agenda.ModificarEvento(evento.Id, "Html 5", "otro ponente", fecha, urlInvitacion);
 			Assert.AreEqual(2, evento.Tracks.Count());
 			Assert.AreEqual(Accion.Modificar, evento.Tracks.Last().Accion);
 
-			agenda.ModificarEvento(evento.Id, "Html 5 y Css 3", "otro ponente", fecha);
+			agenda.ModificarEvento(evento.Id, "Html 5 y Css 3", "otro ponente", fecha, urlInvitacion);
 			Assert.AreEqual(3, evento.Tracks.Count());
 			Assert.AreEqual(Accion.CambiarTitulo, evento.Tracks.Last().Accion);
 		}