File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -217,8 +217,9 @@ def test_filter_invalid_param(self):
217
217
[
218
218
_ (
219
219
"Filter expression '%(value_part)s' doesn't have the shape 'key__operator__value'"
220
- ) % {"value_part" : "diameter__exact" }
221
- ]
220
+ )
221
+ % {"value_part" : "diameter__exact" }
222
+ ],
222
223
)
223
224
224
225
def test_filter_nested_attr (self ):
@@ -431,9 +432,7 @@ def test_filter_registration_date_detail(self):
431
432
object = object ,
432
433
registration_at = "2020-01-01" ,
433
434
)
434
- ObjectRecordFactory .create (
435
- object = object , registration_at = "2021-01-01"
436
- )
435
+ ObjectRecordFactory .create (object = object , registration_at = "2021-01-01" )
437
436
438
437
url = reverse_lazy ("object-detail" , args = [object .uuid ])
439
438
@@ -461,9 +460,7 @@ def test_filter_registration_date_list(self):
461
460
record11 = ObjectRecordFactory .create (
462
461
object = object1 , registration_at = "2020-01-01"
463
462
)
464
- ObjectRecordFactory .create (
465
- object = object1 , registration_at = "2021-01-01"
466
- )
463
+ ObjectRecordFactory .create (object = object1 , registration_at = "2021-01-01" )
467
464
# object 2 - don't show
468
465
ObjectRecordFactory .create (
469
466
object__object_type = self .object_type , registration_at = "2021-01-01"
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ def test_3b_3_records_not_found(self):
274
274
275
275
276
276
class Stuf22Tests (TokenAuthMixin , APITestCase ):
277
- """ # noqa
277
+ """# noqa
278
278
Test cases based on the Table 2.2 in the StUF 03.01
279
279
|PersoonsId|volgnummer|geslachtsnaam|voorvoegsel|voorletters|geboortedatum|burgerlijkestaat|beginGeldigheid|tijdstipRegistratie|
280
280
|----------|----------|-------------|-----------|-----------|-------------|----------------|---------------|-------------------|
@@ -403,7 +403,7 @@ def test_4d_not_found(self):
403
403
404
404
405
405
class Stuf23Tests (TokenAuthMixin , APITestCase ):
406
- """ # noqa
406
+ """# noqa
407
407
Test cases based on the Table 2.2 in the StUF 03.01
408
408
|PersoonsId|volgnummer|geslachtsnaam|voorvoegsel|voorletters|geboortedatum|burgerlijkestaat|beginGeldigheid|tijdstipRegistratie|volgnrNaCorrectie|
409
409
|----------|----------|-------------|-----------|-----------|-------------|----------------|---------------|-------------------|-----------------|
You can’t perform that action at this time.
0 commit comments