Skip to content

Commit 1ac03cb

Browse files
authored
Merge pull request #89 from martignoni/fix-AVS-number
Fix AVS number, which is digits-only.
2 parents 1cacd9b + a82ebe9 commit 1ac03cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/.nextRelease/data/CH/inject.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = (inc, contents) => {
1515
include(inc, 'cell', '(' + random(3, 3) + ')-' + random(3, 3) + '-' + random(3, 4));
1616
include(inc, 'id', {
1717
name: 'AVS',
18-
value: '756.' + random(4, 4) + '.' + random(4, 4) + '.' + random(3, 2)
18+
value: '756.' + random(3, 4) + '.' + random(3, 4) + '.' + random(3, 2)
1919
});
2020
include(inc, 'picture', pic);
21-
};
21+
};

0 commit comments

Comments
 (0)