1414
1515TEST_CASE (" Parse default style file" )
1616{
17- export_list exlist;
17+ export_list_t exlist;
1818 auto const enable_way_area =
1919 read_style_file (OSM2PGSQLDATA_DIR " default.style" , &exlist);
2020
@@ -26,7 +26,7 @@ TEST_CASE("Parse default style file")
2626
2727TEST_CASE (" Parse empty style file" )
2828{
29- export_list exlist;
29+ export_list_t exlist;
3030
3131 REQUIRE_THROWS_WITH (
3232 read_style_file (OSM2PGSQLDATA_DIR " tests/style/empty.style" , &exlist),
@@ -35,15 +35,15 @@ TEST_CASE("Parse empty style file")
3535
3636TEST_CASE (" Parse style file with invalid osm type" )
3737{
38- export_list exlist;
38+ export_list_t exlist;
3939
4040 REQUIRE_THROWS (read_style_file (
4141 OSM2PGSQLDATA_DIR " tests/style/invalid-osm-type.style" , &exlist));
4242}
4343
4444TEST_CASE (" Parse style file with comments only" )
4545{
46- export_list exlist;
46+ export_list_t exlist;
4747
4848 REQUIRE_THROWS_WITH (
4949 read_style_file (OSM2PGSQLDATA_DIR " tests/style/comments.style" ,
@@ -53,7 +53,7 @@ TEST_CASE("Parse style file with comments only")
5353
5454TEST_CASE (" Parse style file with single node entry" )
5555{
56- export_list exlist;
56+ export_list_t exlist;
5757 auto const enable_way_area =
5858 read_style_file (OSM2PGSQLDATA_DIR " tests/style/node.style" , &exlist);
5959
@@ -71,7 +71,7 @@ TEST_CASE("Parse style file with single node entry")
7171
7272TEST_CASE (" Parse style file with a few valid entries" )
7373{
74- export_list exlist;
74+ export_list_t exlist;
7575 auto const enable_way_area =
7676 read_style_file (OSM2PGSQLDATA_DIR " tests/style/valid.style" , &exlist);
7777
@@ -109,7 +109,7 @@ TEST_CASE("Parse style file with a few valid entries")
109109
110110TEST_CASE (" Parse style file with missing fields" )
111111{
112- export_list exlist;
112+ export_list_t exlist;
113113 auto const enable_way_area =
114114 read_style_file (OSM2PGSQLDATA_DIR " tests/style/missing.style" , &exlist);
115115
@@ -138,7 +138,7 @@ TEST_CASE("Parse style file with missing fields")
138138
139139TEST_CASE (" Parse style file with way_area" )
140140{
141- export_list exlist;
141+ export_list_t exlist;
142142 auto const enable_way_area = read_style_file (
143143 OSM2PGSQLDATA_DIR " tests/style/way-area.style" , &exlist);
144144
@@ -168,7 +168,7 @@ TEST_CASE("Parse style file with way_area")
168168
169169TEST_CASE (" Parse style file with different data types" )
170170{
171- export_list exlist;
171+ export_list_t exlist;
172172 auto const enable_way_area = read_style_file (
173173 OSM2PGSQLDATA_DIR " tests/style/data-types.style" , &exlist);
174174
@@ -211,7 +211,7 @@ TEST_CASE("Parse style file with different data types")
211211
212212TEST_CASE (" Parse style file with invalid data types" )
213213{
214- export_list exlist;
214+ export_list_t exlist;
215215 auto const enable_way_area = read_style_file (
216216 OSM2PGSQLDATA_DIR " tests/style/invalid-data-type.style" , &exlist);
217217
0 commit comments