@@ -19,8 +19,8 @@ def setUp(self):
19
19
pgosm_date = PGOSM_DATE ,
20
20
layerset = LAYERSET ,
21
21
layerset_path = None ,
22
- replication = False ,
23
- schema_name = 'osm' )
22
+ schema_name = 'osm' ,
23
+ skip_nested = True )
24
24
25
25
26
26
def tearDown (self ):
@@ -91,8 +91,8 @@ def test_get_export_filename_region_only(self):
91
91
pgosm_date = PGOSM_DATE ,
92
92
layerset = LAYERSET ,
93
93
layerset_path = None ,
94
- replication = False ,
95
- schema_name = 'osm' )
94
+ schema_name = 'osm' ,
95
+ skip_nested = True )
96
96
97
97
input_file = None
98
98
result = pgosm_flex .get_export_filename (input_file )
@@ -109,8 +109,8 @@ def test_layerset_include_place_returns_boolean(self):
109
109
pgosm_date = PGOSM_DATE ,
110
110
layerset = LAYERSET ,
111
111
layerset_path = layerset_path ,
112
- replication = False ,
113
- schema_name = 'osm' )
112
+ schema_name = 'osm' ,
113
+ skip_nested = True )
114
114
115
115
paths = pgosm_flex .get_paths ()
116
116
result = pgosm_flex .layerset_include_place (flex_path = paths ['flex_path' ])
@@ -128,8 +128,8 @@ def test_layerset_include_place_returns_True_with_default_layerset(self):
128
128
pgosm_date = PGOSM_DATE ,
129
129
layerset = LAYERSET ,
130
130
layerset_path = layerset_path ,
131
- replication = False ,
132
- schema_name = 'osm' )
131
+ schema_name = 'osm' ,
132
+ skip_nested = True )
133
133
134
134
paths = pgosm_flex .get_paths ()
135
135
actual = pgosm_flex .layerset_include_place (flex_path = paths ['flex_path' ])
@@ -147,8 +147,8 @@ def test_layerset_include_place_returns_false_when_place_false_in_ini(self):
147
147
pgosm_date = PGOSM_DATE ,
148
148
layerset = layerset ,
149
149
layerset_path = layerset_path ,
150
- replication = False ,
151
- schema_name = 'osm' )
150
+ schema_name = 'osm' ,
151
+ skip_nested = True )
152
152
153
153
paths = pgosm_flex .get_paths ()
154
154
actual = pgosm_flex .layerset_include_place (flex_path = paths ['flex_path' ])
@@ -166,8 +166,8 @@ def test_layerset_include_place_returns_false_when_place_missing_in_ini(self):
166
166
pgosm_date = PGOSM_DATE ,
167
167
layerset = layerset ,
168
168
layerset_path = layerset_path ,
169
- replication = False ,
170
- schema_name = 'osm' )
169
+ schema_name = 'osm' ,
170
+ skip_nested = True )
171
171
172
172
paths = pgosm_flex .get_paths ()
173
173
actual = pgosm_flex .layerset_include_place (flex_path = paths ['flex_path' ])
@@ -185,8 +185,8 @@ def test_layerset_include_place_returns_true_when_place_true_in_ini(self):
185
185
pgosm_date = PGOSM_DATE ,
186
186
layerset = layerset ,
187
187
layerset_path = layerset_path ,
188
- replication = False ,
189
- schema_name = 'osm' )
188
+ schema_name = 'osm' ,
189
+ skip_nested = True )
190
190
191
191
paths = pgosm_flex .get_paths ()
192
192
actual = pgosm_flex .layerset_include_place (flex_path = paths ['flex_path' ])
0 commit comments