aboutsummaryrefslogtreecommitdiff
path: root/tests/test/cpp/cpp-environment.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test/cpp/cpp-environment.scm')
-rw-r--r--tests/test/cpp/cpp-environment.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test/cpp/cpp-environment.scm b/tests/test/cpp/cpp-environment.scm
index d31ec208..df4736fb 100644
--- a/tests/test/cpp/cpp-environment.scm
+++ b/tests/test/cpp/cpp-environment.scm
@@ -16,7 +16,9 @@
(define cpp-file-stack (@@ (c cpp-environment) cpp-file-stack))
(let ((e (make-environment)))
- (test-equal "Default file stack" '(("*outside*" . 1)) (cpp-file-stack e))
+ (test-equal "Default file stack"
+ '(("*outside*" . 1))
+ (cpp-file-stack e))
(let ((e* (enter-file e "test.c")))
(test-equal "File stack after entering file"
'(("test.c" . 1) ("*outside*" . 1)) (cpp-file-stack e*))