Fix regression in test name :o)

This commit is contained in:
Chad Whitacre
2016-11-21 19:46:42 -05:00
parent 617f02c621
commit 1217c9eea2
+1 -1
View File
@@ -64,7 +64,7 @@ class TestRecordCollection:
rows = records.RecordCollection(IdRecord(i) for i in range(1))
assert rows.first() == IdRecord(0)
def test_first_defaults_to_Nfirst(self):
def test_first_defaults_to_None(self):
rows = records.RecordCollection(iter([]))
assert rows.first() is None