[backlinq commit] r267 - trunk/test/BackLINQ.Tests

0 views
Skip to first unread message

codesite...@google.com

unread,
Jan 25, 2009, 8:13:39 AM1/25/09
to backlinq...@googlegroups.com
Author: azizatif
Date: Sun Jan 25 04:28:32 2009
New Revision: 267

Modified:
trunk/test/BackLINQ.Tests/EnumerableFixture.cs

Log:
Reviewed tests for Except operator.


Modified: trunk/test/BackLINQ.Tests/EnumerableFixture.cs
==============================================================================
--- trunk/test/BackLINQ.Tests/EnumerableFixture.cs (original)
+++ trunk/test/BackLINQ.Tests/EnumerableFixture.cs Sun Jan 25 04:28:32 2009
@@ -472,9 +472,9 @@
[Test]
public void Except_SecondArgComparerArg_ComparerIsUsed()
{
- var source = Read("albert", "john", "simon");
- var argument = Read("ALBERT");
- source.Except(argument,
StringComparer.CurrentCultureIgnoreCase).AssertEquals("john", "simon");
+ var first = Read("albert", "john", "simon");
+ var second = Read("ALBERT");
+ first.Except(second,
StringComparer.CurrentCultureIgnoreCase).AssertEquals("john", "simon");
}

[Test]

Reply all
Reply to author
Forward
0 new messages