From 6b52f3ca2452cd05001bbd07235ab38e04b1f70d Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 3 Jun 2016 08:46:26 -0400 Subject: [PATCH] [RM-16140] tests: remove osd ext4 tests Signed-off-by: Alfredo Deza --- ceph_deploy/tests/parser/test_disk.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ceph_deploy/tests/parser/test_disk.py b/ceph_deploy/tests/parser/test_disk.py index fa25423..d3997aa 100644 --- a/ceph_deploy/tests/parser/test_disk.py +++ b/ceph_deploy/tests/parser/test_disk.py @@ -69,9 +69,9 @@ class TestParserDisk(object): args = self.parser.parse_args('disk prepare host1:sdb'.split()) assert args.fs_type == "xfs" - def test_disk_prepare_fstype_ext4(self): - args = self.parser.parse_args('disk prepare --fs-type ext4 host1:sdb'.split()) - assert args.fs_type == "ext4" + def test_disk_prepare_fstype_btrfs(self): + args = self.parser.parse_args('disk prepare --fs-type btrfs host1:sdb'.split()) + assert args.fs_type == "btrfs" def test_disk_prepare_fstype_invalid(self, capsys): with pytest.raises(SystemExit): -- 2.47.3