From 1217c9eea26ef0cb4a33bbfa4022b60ac721a690 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Mon, 21 Nov 2016 19:46:42 -0500 Subject: [PATCH] Fix regression in test name :o) --- tests/test_records.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_records.py b/tests/test_records.py index b5d124f..722591f 100644 --- a/tests/test_records.py +++ b/tests/test_records.py @@ -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