aboutsummaryrefslogtreecommitdiff
path: root/evaluator/quote_unquote_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'evaluator/quote_unquote_test.go')
-rw-r--r--evaluator/quote_unquote_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/evaluator/quote_unquote_test.go b/evaluator/quote_unquote_test.go
index 36095a1..0f79589 100644
--- a/evaluator/quote_unquote_test.go
+++ b/evaluator/quote_unquote_test.go
@@ -71,12 +71,12 @@ func TestQuoteUnquote(t *testing.T) {
},
{
`let foobar = 8;
- quote(foobar)`,
+ quote(foobar)`,
`foobar`,
},
{
`let foobar = 8;
- quote(unquote(foobar))`,
+ quote(unquote(foobar))`,
`8`,
},
{
@@ -93,7 +93,7 @@ func TestQuoteUnquote(t *testing.T) {
},
{
`let quotedInfixExpression = quote(4 + 4);
- quote(unquote(4 + 4) + unquote(quotedInfixExpression))`,
+ quote(unquote(4 + 4) + unquote(quotedInfixExpression))`,
`(8 + (4 + 4))`,
},
}