CTLE-433: fixed more tests due to new data

This commit is contained in:
Tim Chamberlain
2023-05-10 16:35:00 -05:00
parent ef8db2786d
commit e66b649699
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ class FilesystemBackendMetaDataTest
System.out.println(JsonUtils.prettyPrint(json));
System.out.println(json);
String expectToContain = """
"local-filesystem":{"basePath":"/tmp/filesystem-tests/0","backendType":"filesystem","name":"local-filesystem"}""";
"local-filesystem":{"basePath":"/tmp/filesystem-tests/0","backendType":"filesystem","name":"local-filesystem","usesVariants":false}""";
assertTrue(json.contains(expectToContain));
}

View File

@ -51,7 +51,7 @@ class S3BackendMetaDataTest
System.out.println(JsonUtils.prettyPrint(json));
System.out.println(json);
String expectToContain = """
{"s3":{"bucketName":"localstack-test-bucket","basePath":"test-files","backendType":"s3","name":"s3"}""";
{"s3":{"bucketName":"localstack-test-bucket","basePath":"test-files","backendType":"s3","name":"s3","usesVariants":false}""";
assertTrue(json.contains(expectToContain));
}