diff --git a/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/SnapshotTesting.java b/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/SnapshotTesting.java index bea70ac28e81c..d0a4578536456 100644 --- a/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/SnapshotTesting.java +++ b/independent-projects/tools/devtools-testing/src/main/java/io/quarkus/devtools/testing/SnapshotTesting.java @@ -174,7 +174,7 @@ public static AbstractPathAssert assertThatMatchSnapshot(Path fileToCheck, St final String snapshotNotFoundDescription = "corresponding snapshot file not found for " + snapshotIdentifier + " (Use -Dsnap to create it automatically)"; - final String description = "Snapshot is not matching (use -Dsnap to udpate it automatically): " + final String description = "Snapshot is not matching (use -Dsnap to update it automatically): " + snapshotIdentifier; if (isUTF8File(fileToCheck)) { assertThat(snapshotFile).as(snapshotNotFoundDescription).isRegularFile(); @@ -264,7 +264,7 @@ public static ListAssert assertThatDirectoryTreeMatchSnapshots(String sn .collect(toList()); return assertThat(tree) - .as("Snapshot is not matching (use -Dsnap to udpate it automatically):" + snapshotName) + .as("Snapshot is not matching (use -Dsnap to update it automatically):" + snapshotName) .containsExactlyInAnyOrderElementsOf(content); }); }