diff --git a/evaluation/configs/example_init_query.yaml b/evaluation/configs/example_init_query.yaml
index cb7f2ce38ee52f289c8700f74bc388426ea631ce..b8b65a4963d74ba58934fa279bb91d8bddcc4713 100644
--- a/evaluation/configs/example_init_query.yaml
+++ b/evaluation/configs/example_init_query.yaml
@@ -5,7 +5,7 @@ type: query
 charging_stations: charging_stations.json
 maps:
   - medium_nurnberg.osm
-queries_per_setup: 10
+queries_per_setup: 100
 setups:
   - mu_s: 300 # Start and Target Soc
     mu_t: 0
diff --git a/evaluation/configs/example_rank.yaml b/evaluation/configs/example_rank.yaml
index 4a47df8e1a2b01f3b30c7127476922f09132385d..34f99df1f3f2035dca702858d123476a088ffae6 100644
--- a/evaluation/configs/example_rank.yaml
+++ b/evaluation/configs/example_rank.yaml
@@ -4,7 +4,7 @@ description: >
 type: rank
 charging_stations: charging_stations.json
 maps:
-  - medium_nurnberg.osm
+  - oberpfalz-latest.osm
 queries_per_rank: 20
 ranks: [2, 4, 6, 8, 10, 12, 14]
 setups:
diff --git a/tests/gasstation/test_transformations.py b/tests/gasstation/test_transformations.py
index 945e82a91967bed933409b69cf1fe8101c970a87..9237176da3181291d92cc4bafbba55546e19e545 100644
--- a/tests/gasstation/test_transformations.py
+++ b/tests/gasstation/test_transformations.py
@@ -223,7 +223,7 @@ class TestStateGraph(MinimalExamples):
         G.add_node(1, **{CHARGING_COEFFICIENT_KEY: c_1})
 
         H: nx.Graph = state_graph(G, self.U)
-        assert len(H.nodes) == 0
+        assert len(H.nodes) == 2
         assert len(H.edges) == 0