test-cleancode: add the arrays module too (#7583)

This commit is contained in:
Lukas Neubert 2020-12-26 19:21:52 +01:00 committed by GitHub
parent e27252bef5
commit 13b14ecead
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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
@ -100,4 +99,4 @@ fn test_fixed_array_assignment() {
for val in e {
assert val == 'vlang'
}
}
}