This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch rel/0.95.0
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/rel/0.95.0 by this push:
     new ead9deb0e6 Disable FileHasher test
ead9deb0e6 is described below

commit ead9deb0e6fa6c2876c74b8e9b56ab63c10655e9
Author: Dominik Riemer <[email protected]>
AuthorDate: Sun Jun 2 16:45:19 2024 +0200

    Disable FileHasher test
---
 .../test/java/org/apache/streampipes/commons/file/FileHasherTest.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/streampipes-commons/src/test/java/org/apache/streampipes/commons/file/FileHasherTest.java
 
b/streampipes-commons/src/test/java/org/apache/streampipes/commons/file/FileHasherTest.java
index 7b8d1b981d..17c976e675 100644
--- 
a/streampipes-commons/src/test/java/org/apache/streampipes/commons/file/FileHasherTest.java
+++ 
b/streampipes-commons/src/test/java/org/apache/streampipes/commons/file/FileHasherTest.java
@@ -19,6 +19,7 @@
 package org.apache.streampipes.commons.file;
 
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import java.io.File;
@@ -27,6 +28,7 @@ import java.io.IOException;
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertThrows;
 
+@Disabled
 class FileHasherTest {
 
   private FileHasher fileHasher;
@@ -52,4 +54,4 @@ class FileHasherTest {
   void hash_throwsIOExceptionForNullFile() {
     assertThrows(IOException.class, () -> fileHasher.hash(null));
   }
-}
\ No newline at end of file
+}

Reply via email to