File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from core .factory import create_api_app
22
3-
43app = create_api_app ()
54
65
Original file line number Diff line number Diff line change @@ -226,18 +226,14 @@ def test_postgis_extension_enabled(self):
226226 def test_water_elevation_materialized_view_has_expected_columns (self ):
227227 """Water elevation materialized view should match the feet-normalized schema."""
228228 with session_ctx () as session :
229- result = session .execute (
230- text (
231- """
229+ result = session .execute (text ("""
232230 SELECT attname
233231 FROM pg_attribute
234232 WHERE attrelid = 'ogc_water_elevation_wells'::regclass
235233 AND attnum > 0
236234 AND NOT attisdropped
237235 ORDER BY attnum
238- """
239- )
240- )
236+ """ ))
241237 columns = [row [0 ] for row in result .fetchall ()]
242238
243239 assert columns == [
You can’t perform that action at this time.
0 commit comments