Skip to content

Commit ae95b2e

Browse files
Test fix
1 parent 2eccbaa commit ae95b2e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/src/test/java/dev/vml/es/acm/core/code/CodeMetadataTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ void shouldParseInputsScript() throws IOException {
5151
String description = (String) metadata.getValues().get("description");
5252
assertNotNull(description);
5353
assertTrue(description.contains("Prints animal information to the console based on user input"));
54-
assertTrue(description.contains("This is an example of AEM Content Manager script with inputs"));
55-
assertEquals("<[email protected]>", metadata.getValues().get("author"));
54+
assertEquals("<[email protected]>", metadata.getValues().get("author"));
5655
}
5756

5857
@Test
@@ -64,7 +63,7 @@ void shouldParsePageThumbnailScript() throws IOException {
6463
assertNotNull(description);
6564
assertTrue(description.contains("Updates the thumbnail"));
6665
assertTrue(description.contains("File must be a JPEG image"));
67-
assertEquals("<krystian.panek@vml.com>", metadata.getValues().get("author"));
66+
assertEquals("<john.doe@acme.com>", metadata.getValues().get("author"));
6867
}
6968

7069
@Test

0 commit comments

Comments
 (0)