@@ -47,7 +47,7 @@ def setUp(self):
47
47
48
48
def test_list_single_expansion (self ):
49
49
list_url = reverse ("klantinteracties:klantcontact-list" )
50
- response = self .client .get (list_url , {"expand" : "had_betrokkenen " })
50
+ response = self .client .get (list_url , {"expand" : "hadBetrokkenen " })
51
51
52
52
self .assertEqual (response .status_code , status .HTTP_200_OK )
53
53
@@ -98,7 +98,7 @@ def test_list_single_expansion(self):
98
98
def test_list_multiple_level_expansion (self ):
99
99
list_url = reverse ("klantinteracties:klantcontact-list" )
100
100
response = self .client .get (
101
- list_url , {"expand" : "had_betrokkenen,had_betrokkenen.was_partij " }
101
+ list_url , {"expand" : "hadBetrokkenen,hadBetrokkenen.wasPartij " }
102
102
)
103
103
104
104
self .assertEqual (response .status_code , status .HTTP_200_OK )
@@ -188,7 +188,7 @@ def test_detail_single_expansion(self):
188
188
"klantinteracties:klantcontact-detail" ,
189
189
kwargs = {"uuid" : str (self .klantcontact .uuid )},
190
190
)
191
- response = self .client .get (detail_url , {"expand" : "had_betrokkenen " })
191
+ response = self .client .get (detail_url , {"expand" : "hadBetrokkenen " })
192
192
193
193
self .assertEqual (response .status_code , status .HTTP_200_OK )
194
194
@@ -238,7 +238,7 @@ def test_detail_multiple_level_expansion(self):
238
238
kwargs = {"uuid" : str (self .klantcontact .uuid )},
239
239
)
240
240
response = self .client .get (
241
- detail_url , {"expand" : "had_betrokkenen,had_betrokkenen.was_partij " }
241
+ detail_url , {"expand" : "hadBetrokkenen,hadBetrokkenen.wasPartij " }
242
242
)
243
243
244
244
self .assertEqual (response .status_code , status .HTTP_200_OK )
0 commit comments