This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new 3b5d17ca3e [MINOR] Fix corrupted compression-component tests, cont.
3b5d17ca3e is described below
commit 3b5d17ca3ee964f0073a03ef283d9a4a02b2dd2a
Author: Matthias Boehm <[email protected]>
AuthorDate: Wed Jul 19 17:53:40 2023 +0200
[MINOR] Fix corrupted compression-component tests, cont.
---
.../apache/sysds/test/component/compress/colgroup/ColGroupTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/test/java/org/apache/sysds/test/component/compress/colgroup/ColGroupTest.java
b/src/test/java/org/apache/sysds/test/component/compress/colgroup/ColGroupTest.java
index 6c1b7ea113..25c8550ae6 100644
---
a/src/test/java/org/apache/sysds/test/component/compress/colgroup/ColGroupTest.java
+++
b/src/test/java/org/apache/sysds/test/component/compress/colgroup/ColGroupTest.java
@@ -2255,7 +2255,8 @@ public class ColGroupTest extends ColGroupBase {
// both should be null, or both should not be.
if(g2 == null)
assertTrue(g2n == null);
- assertTrue(g2n != null);
+ else
+ assertTrue(g2n != null);
}
catch(Exception e) {
e.printStackTrace();