summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs b/src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs
index 65de3e0..a0c4770 100644
--- a/src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/AssociationsTests.cs
@@ -70,10 +70,10 @@ namespace DotNetOpenAuth.Test.OpenId {
// make b the best by making a older
a.Issued -= TimeSpan.FromHours(1);
- Assert.AreSame(b, this.assocs.Best);
+ Assert.AreSame(b, this.assocs.Best.FirstOrDefault());
// now make a the best
b.Issued -= TimeSpan.FromHours(2);
- Assert.AreSame(a, this.assocs.Best);
+ Assert.AreSame(a, this.assocs.Best.FirstOrDefault());
}
}
}