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

cmeier pushed a commit to branch more-clojure-tests
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit 41b9a262e01f9e8a051d518424c185501c317202
Author: gigasquid <cme...@gigasquidsoftware.com>
AuthorDate: Wed Aug 15 21:11:38 2018 -0400

    add license - fix typo
---
 .../org/apache/clojure_mxnet/visualization_test.clj   | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/visualization_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/visualization_test.clj
index 945d74b..2332941 100644
--- 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/visualization_test.clj
+++ 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/visualization_test.clj
@@ -1,10 +1,27 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.visualization-test
   (:require [org.apache.clojure-mxnet.symbol :as sym]
             [org.apache.clojure-mxnet.visualization :as viz]
             [clojure.test :refer :all])
   (:import (org.apache.mxnet Visualization$Dot)))
 
-(defn test-plot-network
+(deftest test-plot-network
   (let [to-plot-sym (as-> (sym/variable "data") data
                       (sym/convolution "conv1" {:data data
                                                 :kernel [3 3]

Reply via email to