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

baunsgaard 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 2b05e9f951 [SYSTEMDS-3545] Image Crop Linearized (Credit)
2b05e9f951 is described below

commit 2b05e9f9516d99f92a3f0cb65c008dc6f3c57994
Author: slnkahveci <[email protected]>
AuthorDate: Wed Oct 18 00:26:56 2023 +0200

    [SYSTEMDS-3545] Image Crop Linearized (Credit)
---
 .../functions/builtin/part1/BuiltinImageCropLinTest.java   | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git 
a/src/test/java/org/apache/sysds/test/functions/builtin/part1/BuiltinImageCropLinTest.java
 
b/src/test/java/org/apache/sysds/test/functions/builtin/part1/BuiltinImageCropLinTest.java
index c9d30a7cce..025ce21c8b 100644
--- 
a/src/test/java/org/apache/sysds/test/functions/builtin/part1/BuiltinImageCropLinTest.java
+++ 
b/src/test/java/org/apache/sysds/test/functions/builtin/part1/BuiltinImageCropLinTest.java
@@ -64,9 +64,17 @@ public class BuiltinImageCropLinTest extends 
AutomatedTestBase {
 
        @Parameterized.Parameters
        public static Collection<Object[]> data() {
-               return Arrays.asList(new Object[][] {{10, 12, 20, 2, 3, 0.5}, 
{12, 12, 40, 5, 5, 0.4}, {32, 32, 200, 13, 10, 0.2},
-                       {31, 33, 200, 7, 10, 0.2}, {64, 64, 50, 2, 0, 0.8}, 
{125, 123, 32, 7, 37, 0.3}, {128, 128, 83, 23, 14, 0.123},
-                       {256, 50, 2, 0, 0, 0.8}, {256, 255, 2, 0, 0, 0.8}, 
{512, 300, 47, 6, 7, 0.7}});
+               return Arrays.asList(new Object[][] {
+                       {10, 12, 20, 2, 3, 0.5},
+                       {12, 12, 40, 5, 5, 0.4},
+                       {32, 32, 200, 13, 10, 0.2},
+                       {31, 33, 200, 7, 10, 0.2},
+                       {64, 64, 50, 2, 0, 0.8},
+                       {125, 123, 32, 7, 37, 0.3},
+                       {128, 128, 83, 23, 14, 0.123},
+                       {256, 50, 2, 0, 0, 0.8},
+                       {256, 255, 2, 0, 0, 0.8},
+                       {512, 300, 47, 6, 7, 0.7}});
        }
 
        @Override

Reply via email to