diff --git a/.devfile.yaml b/.devfile.yaml index cfcc5cc..1592709 100644 --- a/.devfile.yaml +++ b/.devfile.yaml @@ -1,4 +1,4 @@ -schemaVersion: 2.2.2 +schemaVersion: 2.2.0 metadata: attributes: metadata-name-field: generateName @@ -23,4 +23,4 @@ components: - name: m2 volume: size: 5Gi -commands: [] \ No newline at end of file +commands: [] diff --git a/src/test/java/io/github/sashirestela/cleverclient/metadata/InterfaceMetadataStoreTest.java b/src/test/java/io/github/sashirestela/cleverclient/metadata/InterfaceMetadataStoreTest.java index c836339..e1c834b 100644 --- a/src/test/java/io/github/sashirestela/cleverclient/metadata/InterfaceMetadataStoreTest.java +++ b/src/test/java/io/github/sashirestela/cleverclient/metadata/InterfaceMetadataStoreTest.java @@ -135,15 +135,15 @@ void shouldSaveInterfaceMetadataWhenAccomplishValidtion() { void shouldThrownExceptionWhenTryingToGetNotPreviouslySavedInterface() { Exception exception = assertThrows(CleverClientException.class, () -> store.get(ITest.NotSavedService.class)); - assertEquals("The interface NotSavedService has not been saved yet.", exception.getMessage()); + assertEquals("The interface NotSavedService has not been saved yet.", exception.getMessage()); } @Test void shouldThrownExceptionWhenMethodHasNotHttpAnnotation() { Exception exception = assertThrows(CleverClientException.class, () -> store.save(ITest.NotAnnotatedService.class)); - assertEquals("Missing HTTP annotation for the method unannotatedMethod.", - exception.getMessage()); + assertEquals("Missing HTTP annotation for the method unannotatedMethod.", + exception.getMessage()); } @Test