core: fix syntax of input-bad-var-default test fixture

This was incorrectly using block syntax to assign a value to the "default"
attribute.
This commit is contained in:
Martin Atkins 2018-05-24 18:20:40 -07:00
parent 6cf4835714
commit f65f51c023
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
variable "test" {
default {
l = [1, 2, 3]
}
default = {
l = [1, 2, 3]
}
}