aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/global.yue
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/global.yue')
-rw-r--r--spec/inputs/global.yue4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/inputs/global.yue b/spec/inputs/global.yue
index 7d6cfde..59cf764 100644
--- a/spec/inputs/global.yue
+++ b/spec/inputs/global.yue
@@ -1,6 +1,6 @@
1 1
2do 2do
3 global a,b,c = 223, 343 3 global a,b,c = 223, 343, nil
4 global cool = "dad" 4 global cool = "dad"
5 5
6do 6do
@@ -9,7 +9,7 @@ do
9 9
10do 10do
11 global a,b,c 11 global a,b,c
12 a,b,c,d = "hello" 12 a,b,c,d = "hello", nil, nil, nil
13 13
14 14
15do 15do