diff options
Diffstat (limited to 'test/util/settings.rb')
-rwxr-xr-x | test/util/settings.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/util/settings.rb b/test/util/settings.rb index f34cbbc46..2ff9e66ec 100755 --- a/test/util/settings.rb +++ b/test/util/settings.rb @@ -379,7 +379,7 @@ yay = /a/path assert_equal(user.uid, File.stat(path).uid, "UIDS are not equal") case Facter["operatingsystem"].value - when /BSD/, "Darwin": # nothing + when /BSD/, "Darwin" # nothing else assert_equal(group.gid, File.stat(path).gid, "GIDS are not equal") end @@ -418,7 +418,7 @@ yay = /a/path assert_equal(user.uid, File.stat(path).uid, "UIDS are not equal") case Facter["operatingsystem"].value - when /BSD/, "Darwin": # nothing + when /BSD/, "Darwin" # nothing else assert_equal(group.gid, File.stat(path).gid, "GIDS are not equal") end |