From 78947b0e4690e7256ac9aecd00f123129a980c9a Mon Sep 17 00:00:00 2001 From: Tom Kazimiers Date: Thu, 16 Mar 2017 01:00:18 -0400 Subject: [PATCH] Tests: fix ketword-arg before non-keyword-arg problen in PostGIS tests --- django/applications/catmaid/tests/test_postgis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/applications/catmaid/tests/test_postgis.py b/django/applications/catmaid/tests/test_postgis.py index 920012bfe3..557b73d94e 100644 --- a/django/applications/catmaid/tests/test_postgis.py +++ b/django/applications/catmaid/tests/test_postgis.py @@ -51,11 +51,11 @@ def test_node_query(self): } postgis_3d_nodes_r = node.node_list_tuples_query(params, - self.test_project_id, node_provider=node.Postgis3dNodeProvider(), + self.test_project_id, node.Postgis3dNodeProvider(), tuple(), tuple(), include_labels=False) postgis_2d_nodes_r = node.node_list_tuples_query(params, - self.test_project_id, node_provider=node.Postgis2dNodeProvider(), + self.test_project_id, node.Postgis2dNodeProvider(), tuple(), tuple(), include_labels=False)