Skip to content

Commit

Permalink
Update arrayExtensions.test.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas authored Mar 5, 2024
1 parent b1b55c0 commit ab3757b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vecxt/test/src/arrayExtensions.test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ArrayExtensionSuite extends munit.FunSuite:
val v2 = v1 * 2.0
val v3 = v1 * 3.0

val l = NArray(v1, v2, v3)
val l = Array(v1, v2, v3)
val summed = l.horizontalSum

assert(summed(0) == 1 + 2 + 3)
Expand Down

0 comments on commit ab3757b

Please sign in to comment.