mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
test-cleancode: add the arrays
module too (#7583)
This commit is contained in:
parent
e27252bef5
commit
13b14ecead
2 changed files with 2 additions and 2 deletions
|
@ -20,6 +20,7 @@ const (
|
|||
vfmt_verify_list = [
|
||||
'cmd/tools/vdoc.v',
|
||||
'cmd/v/v.v',
|
||||
'vlib/arrays',
|
||||
'vlib/builtin/array.v',
|
||||
'vlib/builtin/array_test.v',
|
||||
'vlib/builtin/map.v',
|
||||
|
|
|
@ -91,7 +91,6 @@ fn test_fixed_array_assignment() {
|
|||
c = a
|
||||
assert c[0] == a[0]
|
||||
assert c[1] == a[1]
|
||||
|
||||
d := [3]int{init: 333}
|
||||
for val in d {
|
||||
assert val == 333
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue