Skip to content

Commit

Permalink
Fix failing tests (apache#16117)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexChalk authored and larroy committed Sep 28, 2019
1 parent df2cb19 commit 010dbc2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@
(-> (executor/forward exec-test) (executor/outputs) (first))))))

(deftest test-maximum
(let [data1 (sym/variable "data")
data2 (sym/variable "data")
(let [data1 (sym/variable "data1")
data2 (sym/variable "data2")
shape-vec [3 4]
data-tmp1 (random/uniform 0 100 shape-vec)
data-tmp2 (random/uniform 0 100 shape-vec)
Expand All @@ -424,8 +424,8 @@
out))))

(deftest test-minimun
(let [data1 (sym/variable "data")
data2 (sym/variable "data")
(let [data1 (sym/variable "data1")
data2 (sym/variable "data2")
shape-vec [3 4]
data-tmp1 (random/uniform 0 100 shape-vec)
data-tmp2 (random/uniform 0 100 shape-vec)
Expand Down

0 comments on commit 010dbc2

Please sign in to comment.