about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/wpcarro/emacs/pkgs/string/tests.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/users/wpcarro/emacs/pkgs/string/tests.el b/users/wpcarro/emacs/pkgs/string/tests.el
index 92290c6db8..351e305466 100644
--- a/users/wpcarro/emacs/pkgs/string/tests.el
+++ b/users/wpcarro/emacs/pkgs/string/tests.el
@@ -10,13 +10,13 @@
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (ert-deftest string-caps->kebab ()
-  (string= "foo-bar-baz" (string-caps->kebab "FOO_BAR_BAZ")))
+  (should (string= "foo-bar-baz" (string-caps->kebab "FOO_BAR_BAZ"))))
 
 (ert-deftest string-kebab->caps ()
-  (string= "FOO_BAR_BAZ" (string-kebab->caps "foo-bar-baz")))
+  (should (string= "FOO_BAR_BAZ" (string-kebab->caps "foo-bar-baz"))))
 
 (ert-deftest string-lower->caps ()
-  (string= "FOO_BAR_BAZ" (string-lower->caps "foo bar baz")))
+  (should (string= "FOO_BAR_BAZ" (string-lower->caps "foo bar baz"))))
 
 (ert-deftest string-lower->kebab ()
-  (string= "foo-bar-baz" (string-lower->kebab "foo bar baz")))
+  (should (string= "foo-bar-baz" (string-lower->kebab "foo bar baz"))))