Skip to content

Commit

Permalink
Directory owner/group are strings not ids
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Oct 18, 2023
1 parent d1cf19b commit de9f31f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jfrog/jfrog-cli/test/controls/jf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
it { should exist }
its('uid') { should eq 1000 }
its('gid') { should eq 1000 }
its('home') { should eq '/bin/bash' }
its('home') { should eq '/home/jfrog' }
end

describe directory('/home/jfrog') do
its('owner') { should eq 1000 }
its('group') { should eq 1000 }
its('owner') { should eq 'jfrog' }
its('group') { should eq 'jfrog' }
end

0 comments on commit de9f31f

Please sign in to comment.