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]