From 62795f81265e72d9b9b82a22f44305364c0e71f9 Mon Sep 17 00:00:00 2001 From: Alex Dreyer Date: Fri, 14 Feb 2014 12:54:48 -0800 Subject: [PATCH] Switch test to use a much higher gid/uid (cherry picked from commit ccf5284b56283148e8b0efbba9fb85c2fcd6ba48) --- spec/acceptance/concat_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/acceptance/concat_spec.rb b/spec/acceptance/concat_spec.rb index e31e489..89919cc 100644 --- a/spec/acceptance/concat_spec.rb +++ b/spec/acceptance/concat_spec.rb @@ -99,8 +99,8 @@ describe 'basic concat test' do context 'owner/group non-root' do before(:all) do - shell "groupadd -g 42 bob" - shell "useradd -u 42 -g 42 bob" + shell "groupadd -g 64444 bob" + shell "useradd -u 42 -g 64444 bob" end after(:all) do shell "userdel bob"