diff options
| author | Glenn Morris | 2017-10-23 22:02:46 -0700 |
|---|---|---|
| committer | Glenn Morris | 2017-10-23 22:02:46 -0700 |
| commit | a015db90e345f70801781e710bb8d12e89bb048b (patch) | |
| tree | 7baaaa8b46649f8fd8ce4315186b28c390e72376 | |
| parent | 529a9c09d3f6b5d5a61b81b306bdb8ffa0da50f0 (diff) | |
| download | emacs-a015db90e345f70801781e710bb8d12e89bb048b.tar.gz emacs-a015db90e345f70801781e710bb8d12e89bb048b.zip | |
* test/lisp/progmodes/sql-tests.el
(sql-tests-postgres-list-databases-error): Silence compiler.
| -rw-r--r-- | test/lisp/progmodes/sql-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/progmodes/sql-tests.el b/test/lisp/progmodes/sql-tests.el index ad22906ecf1..15f59529b2a 100644 --- a/test/lisp/progmodes/sql-tests.el +++ b/test/lisp/progmodes/sql-tests.el | |||
| @@ -50,7 +50,7 @@ | |||
| 50 | (lambda (_command) t)) | 50 | (lambda (_command) t)) |
| 51 | ((symbol-function 'process-lines) | 51 | ((symbol-function 'process-lines) |
| 52 | (lambda (_program &rest _args) | 52 | (lambda (_program &rest _args) |
| 53 | (error)))) | 53 | (error "some error")))) |
| 54 | (should-not (sql-postgres-list-databases)))) | 54 | (should-not (sql-postgres-list-databases)))) |
| 55 | 55 | ||
| 56 | (provide 'sql-tests) | 56 | (provide 'sql-tests) |