From 554d8dc8686dc8b986d2a4ff86b89fe21ecc7e5d Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Sat, 25 Apr 2020 12:42:51 +0200 Subject: [PATCH] test/stages/groups: fix gid to be a number According to the schema the "gid" option is a number not a string. --- test/stages_tests/groups/b.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stages_tests/groups/b.json b/test/stages_tests/groups/b.json index 1311356e..5dd151b2 100644 --- a/test/stages_tests/groups/b.json +++ b/test/stages_tests/groups/b.json @@ -825,7 +825,7 @@ "options": { "groups": { "testgroup": { - "gid": "42042" + "gid": 42042 } } }