From: Alfredo Deza Date: Fri, 3 Jun 2016 12:46:26 +0000 (-0400) Subject: [RM-16140] tests: remove osd ext4 tests X-Git-Tag: v1.5.34~3^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6b52f3ca2452cd05001bbd07235ab38e04b1f70d;p=ceph-deploy.git [RM-16140] tests: remove osd ext4 tests Signed-off-by: Alfredo Deza --- 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):