From 973b69643aced66e4aa175db108c8989e1fc47c1 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sat, 4 Jan 2025 16:55:40 +0100 Subject: [PATCH] more revertions --- martin/tests/pg_table_source_test.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/martin/tests/pg_table_source_test.rs b/martin/tests/pg_table_source_test.rs index 45a932ae3..b5813c511 100644 --- a/martin/tests/pg_table_source_test.rs +++ b/martin/tests/pg_table_source_test.rs @@ -110,7 +110,7 @@ async fn table_source() { "#); let source2 = table(&mock, "table_source_geog"); - assert_yaml_snapshot!(source2, @r#" + assert_yaml_snapshot!(source2, @r" schema: public table: table_source_geog srid: 4326 @@ -123,14 +123,14 @@ async fn table_source() { geometry_type: Geometry properties: gid: int4 - "#); + "); } #[actix_rt::test] async fn tables_tilejson() { let mock = mock_sources(mock_pgcfg("connection_string: $DATABASE_URL")).await; let tj = source(&mock, "table_source").get_tilejson(); - assert_yaml_snapshot!(tj, @r#" + assert_yaml_snapshot!(tj, @r" tilejson: 3.0.0 tiles: [] vector_layers: @@ -145,7 +145,7 @@ async fn tables_tilejson() { name: table_source foo: bar: foo - "#); + "); } #[actix_rt::test]