branch: externals/tomelr
commit 192cb06a2374ef6a0d24eeca4d4f4062848edbd7
Author: Kaushal Modi <[email protected]>
Commit: Kaushal Modi <[email protected]>
chore(style): Whitespace change only
---
test/ttable.el | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/test/ttable.el b/test/ttable.el
index 3898b187cd..477324dc3f 100644
--- a/test/ttable.el
+++ b/test/ttable.el
@@ -26,16 +26,20 @@
;;;; Simple tables
(ert-deftest test-table ()
- (let ((inp '(((table-1 . ((key1 . "some string")
+ (let ((inp '(
+ ((table-1 . ((key1 . "some string")
(key2 . 123))))
((table-2 . ((key1 . "another string")
- (key2 . 456))))))
- (ref '("[table-1]
+ (key2 . 456))))
+ ))
+ (ref '(
+ "[table-1]
key1 = \"some string\"
key2 = 123"
"[table-2]
key1 = \"another string\"
- key2 = 456"))
+ key2 = 456"
+ ))
out)
(dolist (el inp)
(push (tomelr-encode el) out))