emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 136/255: two small fixes


From: Eric Schulte
Subject: [elpa] 136/255: two small fixes
Date: Sun, 16 Mar 2014 01:02:35 +0000

eschulte pushed a commit to branch go
in repository elpa.

commit e1d6d121f31e89dfb9e0797a8a3f21ac17bf31b3
Author: Eric Schulte <address@hidden>
Date:   Fri Jun 1 23:55:17 2012 -0600

    two small fixes
---
 go-board.el |    2 +-
 go-tests.el |   18 +++++++++---------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/go-board.el b/go-board.el
index 90ef0aa..bf86413 100644
--- a/go-board.el
+++ b/go-board.el
@@ -424,4 +424,4 @@
 (defmethod go-quit ((board board))
   (with-board board (board-quit)))
 
-(provide 'board)
+(provide 'go-board)
diff --git a/go-tests.el b/go-tests.el
index ced0637..ea394b4 100644
--- a/go-tests.el
+++ b/go-tests.el
@@ -153,15 +153,15 @@
 
 
 ;;; GTP and gnugo tests
-(ert-deftest go-test-gtp-char-to-gtp ()
-  (should (= 0  (gtp-char-to-num ?A)))
-  (should (= 7  (gtp-char-to-num ?H)))
-  (should (= 8  (gtp-char-to-num ?J)))
-  (should (= 18 (gtp-char-to-num ?T)))
-  (should (= 0  (gtp-char-to-num ?a)))
-  (should (= 7  (gtp-char-to-num ?h)))
-  (should (= 8  (gtp-char-to-num ?j)))
-  (should (= 18 (gtp-char-to-num ?t))))
+(ert-deftest go-test-char-to-gtp ()
+  (should (= 0  (char-to-num ?A)))
+  (should (= 7  (char-to-num ?H)))
+  (should (= 8  (char-to-num ?J)))
+  (should (= 18 (char-to-num ?T)))
+  (should (= 0  (char-to-num ?a)))
+  (should (= 7  (char-to-num ?h)))
+  (should (= 8  (char-to-num ?j)))
+  (should (= 18 (char-to-num ?t))))
 
 (defmacro with-gnugo (&rest body)
   `(let (*gnugo*)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]