@@ -42,7 +42,7 @@ def assertDatasetsOk(self, response: Any, expected_count: Optional[int] = None):
4242class DatasetsControllerTest (DatasetsControllerTestBase ):
4343 def test_datasets (self ):
4444 response = get_datasets (get_datasets_ctx ())
45- datasets = self .assertDatasetsOk (response , expected_count = 2 )
45+ datasets = self .assertDatasetsOk (response , expected_count = 3 )
4646 for dataset in datasets :
4747 self .assertIsInstance (dataset , dict )
4848 self .assertIn ("id" , dataset )
@@ -55,7 +55,7 @@ def test_dataset_with_details(self):
5555 response = get_datasets (
5656 get_datasets_ctx (), details = True , base_url = "http://test"
5757 )
58- datasets = self .assertDatasetsOk (response , expected_count = 2 )
58+ datasets = self .assertDatasetsOk (response , expected_count = 3 )
5959
6060 demo_dataset = None
6161 demo_1w_dataset = None
@@ -97,7 +97,7 @@ def test_dataset_with_point(self):
9797 response = get_datasets (
9898 get_datasets_ctx (), point = (1.7 , 51.2 ), base_url = "http://test"
9999 )
100- datasets = self .assertDatasetsOk (response , expected_count = 2 )
100+ datasets = self .assertDatasetsOk (response , expected_count = 3 )
101101 dataset = datasets [0 ]
102102 self .assertIsInstance (dataset , dict )
103103 self .assertIn ("id" , dataset )
@@ -114,7 +114,7 @@ def test_dataset_with_point_and_details(self):
114114 response = get_datasets (
115115 get_datasets_ctx (), point = (1.7 , 51.2 ), details = True , base_url = "http://test"
116116 )
117- datasets = self .assertDatasetsOk (response , expected_count = 2 )
117+ datasets = self .assertDatasetsOk (response , expected_count = 3 )
118118 dataset = datasets [0 ]
119119 self .assertIsInstance (dataset , dict )
120120 self .assertIn ("id" , dataset )
0 commit comments