diff options
| author | Stefan Monnier | 2015-04-14 23:06:44 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2015-04-14 23:06:44 -0400 |
| commit | 45d75c0b758cf152698e83e180dfc8eed5d355ba (patch) | |
| tree | c6a23259bd1a3a23edc6bd74d620206c543d2cfa | |
| parent | 5de3427203ac1fc0badd01a447c65cf45ecf1403 (diff) | |
| download | emacs-45d75c0b758cf152698e83e180dfc8eed5d355ba.tar.gz emacs-45d75c0b758cf152698e83e180dfc8eed5d355ba.zip | |
automated/eieio-test-methodinvoke.el (make-instance) <(subclass C)>:
Don't use call-next-method in a cl-defmethod.
| -rw-r--r-- | test/automated/eieio-test-methodinvoke.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/automated/eieio-test-methodinvoke.el b/test/automated/eieio-test-methodinvoke.el index 5263013434e..557f031d181 100644 --- a/test/automated/eieio-test-methodinvoke.el +++ b/test/automated/eieio-test-methodinvoke.el | |||
| @@ -186,7 +186,7 @@ | |||
| 186 | 186 | ||
| 187 | (cl-defmethod make-instance ((p (subclass C)) &rest args) | 187 | (cl-defmethod make-instance ((p (subclass C)) &rest args) |
| 188 | (eieio-test-method-store :STATIC 'C) | 188 | (eieio-test-method-store :STATIC 'C) |
| 189 | (call-next-method) | 189 | (cl-call-next-method) |
| 190 | ) | 190 | ) |
| 191 | 191 | ||
| 192 | (ert-deftest eieio-test-method-order-list-6 () | 192 | (ert-deftest eieio-test-method-order-list-6 () |