|
From: Luke B. <lb...@pa...> - 2008-10-06 17:42:04
|
Hey Robert, Sorry for not getting back to you on this - I'm not sure what is going on with the list, but I'll get this patch into version control today. Thanks, Luke On Thu, Oct 2, 2008 at 2:43 PM, Robert Penner <in...@ro...> wrote: > I saw that the result message for assertSame() only showed one of the > two things being compared. I copied over code from assertEquals: > > Assert.as > > @@ -253,7 +253,7 @@ > object1 = msg; > msg = ""; > } > - addTestResult(String(msg), "assertSame", (object1 === object2)); > + addTestResult(format(String(msg), object1, object2), "assertSame", > (object1 === object2)); > } > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Asunit-users mailing list > Asu...@li... > https://lists.sourceforge.net/lists/listinfo/asunit-users > |