mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-17 20:50:44 +00:00
Applying checkstyle updates to test sources
This commit is contained in:
@ -49,7 +49,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
*******************************************************************************/
|
||||
class GetTableApiFieldsActionTest extends BaseTest
|
||||
{
|
||||
private final String TABLE_NAME = "testTable";
|
||||
private static final String TABLE_NAME = "testTable";
|
||||
|
||||
Function<List<? extends QFieldMetaData>, Set<String>> fieldListToNameSet = l -> l.stream().map(f -> f.getName()).collect(Collectors.toSet());
|
||||
|
||||
|
@ -80,8 +80,8 @@ class ApiInstanceMetaDataTest
|
||||
{
|
||||
assertValidationErrors(makeBaselineValidApiInstanceMetaData()
|
||||
.withCurrentVersion(new APIVersion("2023.Q1"))
|
||||
.withSupportedVersions(List.of(new APIVersion("2022.Q3"), new APIVersion("2022.Q4")))
|
||||
, List.of("supportedVersions [[2022.Q3, 2022.Q4]] does not contain currentVersion [2023.Q1]"));
|
||||
.withSupportedVersions(List.of(new APIVersion("2022.Q3"), new APIVersion("2022.Q4"))),
|
||||
List.of("supportedVersions [[2022.Q3, 2022.Q4]] does not contain currentVersion [2023.Q1]"));
|
||||
|
||||
assertValidationErrors(makeBaselineValidApiInstanceMetaData()
|
||||
.withCurrentVersion(new APIVersion("2023.Q1"))
|
||||
|
Reference in New Issue
Block a user