diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-03-15 01:27:14 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-03-15 01:27:14 -0500 |
commit | 3b6a0426891303b3225cd914dae5f9ee345a1f14 (patch) | |
tree | 6e904e7f086cdd013a668f317a5bb34bb0da1def | |
parent | c2ecca9f2a16dc35a268eb94ea2b8c03584b4a22 (diff) | |
download | horizon-3b6a0426891303b3225cd914dae5f9ee345a1f14.tar.gz horizon-3b6a0426891303b3225cd914dae5f9ee345a1f14.tar.bz2 horizon-3b6a0426891303b3225cd914dae5f9ee345a1f14.tar.xz horizon-3b6a0426891303b3225cd914dae5f9ee345a1f14.zip |
tests: Remove undo file from extfs testing
-rw-r--r-- | tests/spec/simulator_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/spec/simulator_spec.rb b/tests/spec/simulator_spec.rb index b061ec1..66f1d8f 100644 --- a/tests/spec/simulator_spec.rb +++ b/tests/spec/simulator_spec.rb @@ -84,17 +84,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 -z /tmp/undo-sdb1 /dev/sdb1") + expect(last_command_started.stdout).to include("mkfs.ext2 -q /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 -z /tmp/undo-sdb1 /dev/sdb1") + expect(last_command_started.stdout).to include("mkfs.ext3 -q /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 -z /tmp/undo-sdb1 /dev/sdb1") + expect(last_command_started.stdout).to include("mkfs.ext4 -q /dev/sdb1") end it "creates JFS filesystems correctly" do use_fixture '0195-fs-jfs.installfile' |