summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-09-20 17:40:12 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-09-20 17:40:12 -0500
commit59f9e1d6d1afdd0fa6d7dc6ce8f0d987734aab2a (patch)
tree796fed7b433d235aff5a79ea41c7228e082f8510 /tests
parent71d09ecaccd22e13ca2ac2faac9e2080364d1513 (diff)
downloadhorizon-59f9e1d6d1afdd0fa6d7dc6ce8f0d987734aab2a.tar.gz
horizon-59f9e1d6d1afdd0fa6d7dc6ce8f0d987734aab2a.tar.bz2
horizon-59f9e1d6d1afdd0fa6d7dc6ce8f0d987734aab2a.tar.xz
horizon-59f9e1d6d1afdd0fa6d7dc6ce8f0d987734aab2a.zip
tests: Update Simulator spec for new mke2fs param
Diffstat (limited to 'tests')
-rw-r--r--tests/spec/simulator_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spec/simulator_spec.rb b/tests/spec/simulator_spec.rb
index 10580ac..b2d6d4a 100644
--- a/tests/spec/simulator_spec.rb
+++ b/tests/spec/simulator_spec.rb
@@ -88,17 +88,17 @@ RSpec.describe 'HorizonScript Simulator', :type => :aruba do
it "creates ext2 filesystems correctly" do
use_fixture '0193-fs-ext2.installfile'
run_simulate
- expect(last_command_started.stdout).to include("mkfs.ext2 -q /dev/sdb1")
+ expect(last_command_started.stdout).to include("mkfs.ext2 -q -F /dev/sdb1")
end
it "creates ext3 filesystems correctly" do
use_fixture '0194-fs-ext3.installfile'
run_simulate
- expect(last_command_started.stdout).to include("mkfs.ext3 -q /dev/sdb1")
+ expect(last_command_started.stdout).to include("mkfs.ext3 -q -F /dev/sdb1")
end
it "creates ext4 filesystems correctly" do
use_fixture '0179-fs-basic.installfile'
run_simulate
- expect(last_command_started.stdout).to include("mkfs.ext4 -q /dev/sdb1")
+ expect(last_command_started.stdout).to include("mkfs.ext4 -q -F /dev/sdb1")
end
it "creates JFS filesystems correctly" do
use_fixture '0195-fs-jfs.installfile'