aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog5
-rw-r--r--test/automated/eieio-test-methodinvoke.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 29b7c7d59ea..87425a69148 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
12015-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * automated/eieio-test-methodinvoke.el (make-instance): Add methods
4 here rather than on eieio-constructor.
5
12015-02-13 Magnus Henoch <magnus.henoch@gmail.com> 62015-02-13 Magnus Henoch <magnus.henoch@gmail.com>
2 7
3 * automated/sasl-scram-rfc-tests.el: New file. 8 * automated/sasl-scram-rfc-tests.el: New file.
diff --git a/test/automated/eieio-test-methodinvoke.el b/test/automated/eieio-test-methodinvoke.el
index da5f59a4654..62f5603d3b6 100644
--- a/test/automated/eieio-test-methodinvoke.el
+++ b/test/automated/eieio-test-methodinvoke.el
@@ -179,12 +179,12 @@
179 (if (next-method-p) (call-next-method)) 179 (if (next-method-p) (call-next-method))
180 ) 180 )
181 181
182(defmethod eieio-constructor :STATIC ((p C-base2) &rest args) 182(defmethod make-instance :STATIC ((p C-base2) &rest args)
183 (eieio-test-method-store :STATIC 'C-base2) 183 (eieio-test-method-store :STATIC 'C-base2)
184 (if (next-method-p) (call-next-method)) 184 (if (next-method-p) (call-next-method))
185 ) 185 )
186 186
187(defmethod eieio-constructor :STATIC ((p C) &rest args) 187(defmethod make-instance :STATIC ((p C) &rest args)
188 (eieio-test-method-store :STATIC 'C) 188 (eieio-test-method-store :STATIC 'C)
189 (call-next-method) 189 (call-next-method)
190 ) 190 )