You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by sk...@apache.org on 2019/01/10 18:04:56 UTC

[incubator-mxnet] branch master updated: fix minor indentation (#13827)

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

skm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new c65b1f5  fix minor indentation (#13827)
c65b1f5 is described below

commit c65b1f58ad09ba13d82e60ab059b2bf8af02b953
Author: Youngseok0001 <je...@e.ntu.edu.sg>
AuthorDate: Fri Jan 11 02:04:40 2019 +0800

    fix minor indentation (#13827)
---
 scala-package/core/src/test/scala/org/apache/mxnet/NDArraySuite.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scala-package/core/src/test/scala/org/apache/mxnet/NDArraySuite.scala b/scala-package/core/src/test/scala/org/apache/mxnet/NDArraySuite.scala
index 2db9ff1..2f3b167 100644
--- a/scala-package/core/src/test/scala/org/apache/mxnet/NDArraySuite.scala
+++ b/scala-package/core/src/test/scala/org/apache/mxnet/NDArraySuite.scala
@@ -190,7 +190,7 @@ class NDArraySuite extends FunSuite with BeforeAndAfterAll with Matchers {
     assert(arrPower3.shape === Shape(2, 1))
     assert(arrPower3.toArray === Array(27f, 3125f))
 
-   val arrPower4 = arr ** 2f
+    val arrPower4 = arr ** 2f
     assert(arrPower4.shape === Shape(2, 1))
     assert(arrPower4.toArray === Array(9f, 25f))