diff --git a/setup.py b/setup.py
index 0231734191ba07ef3499817cf876fe1da9cb184f..a5361c9efc3acc4fbccc603ece60eccc0ed88b31 100644
--- a/setup.py
+++ b/setup.py
@@ -178,7 +178,7 @@ def main():
               'Natural Language :: English',
               'Programming Language :: C++',
               'Programming Language :: Python',
-            'Programming Language :: Python :: 3',
+              'Programming Language :: Python :: 3',
               'Topic :: Scientific/Engineering',
               'Topic :: Scientific/Engineering :: Mathematics',
               'Topic :: Scientific/Engineering :: Physics',
diff --git a/test/test_array.py b/test/test_array.py
index 807249dccba575d8c05c9589347d090ef9d139cb..801738876e3a9ec7b12e01d08491feae5c6334d6 100644
--- a/test/test_array.py
+++ b/test/test_array.py
@@ -1129,7 +1129,7 @@ def test_list_builder(ctx_factory):
 
     inf = result["mylist"]
     assert inf.count == 3000
-    assert (inf.list.get()[-6:] == [1, 2, 2, 3, 3, 3]).all()
+    assert (inf.lists.get()[-6:] == [1, 2, 2, 3, 3, 3]).all()
 
 # }}}