@@ -79,7 +79,7 @@ void shouldListFirst25andThen10Schemas() {
7979 .toList ()
8080 );
8181 var schemasFirst25 = controller .getSchemas (LOCAL_KAFKA_CLUSTER_NAME ,
82- null , null , null , null , null , null , null ).block ();
82+ null , null , null , SchemaColumnsToSortDTO . SUBJECT , null , null , null ).block ();
8383 assertThat (schemasFirst25 ).isNotNull ();
8484 assertThat (schemasFirst25 .getBody ()).isNotNull ();
8585 assertThat (schemasFirst25 .getBody ().getPageCount ()).isEqualTo (4 );
@@ -88,7 +88,7 @@ void shouldListFirst25andThen10Schemas() {
8888 .isSortedAccordingTo (Comparator .comparing (SchemaSubjectDTO ::getSubject ));
8989
9090 var schemasFirst10 = controller .getSchemas (LOCAL_KAFKA_CLUSTER_NAME ,
91- null , 10 , null , null , null , null , null ).block ();
91+ null , 10 , null , SchemaColumnsToSortDTO . SUBJECT , null , null , null ).block ();
9292
9393 assertThat (schemasFirst10 ).isNotNull ();
9494 assertThat (schemasFirst10 .getBody ()).isNotNull ();
@@ -123,7 +123,7 @@ void shouldCorrectlyHandleNonPositivePageNumberAndPageSize() {
123123 .toList ()
124124 );
125125 var schemas = controller .getSchemas (LOCAL_KAFKA_CLUSTER_NAME ,
126- 0 , -1 , null , null , null , null , null ).block ();
126+ 0 , -1 , null , SchemaColumnsToSortDTO . SUBJECT , null , null , null ).block ();
127127
128128 assertThat (schemas ).isNotNull ();
129129 assertThat (schemas .getBody ()).isNotNull ();
@@ -142,7 +142,7 @@ void shouldCalculateCorrectPageCountForNonDivisiblePageSize() {
142142 );
143143
144144 var schemas = controller .getSchemas (LOCAL_KAFKA_CLUSTER_NAME ,
145- 4 , 33 , null , null , null , null , null ).block ();
145+ 4 , 33 , null , SchemaColumnsToSortDTO . SUBJECT , null , null , null ).block ();
146146
147147 assertThat (schemas ).isNotNull ();
148148 assertThat (schemas .getBody ()).isNotNull ();
0 commit comments