From c4fd7635fd08ff4baee63d257a1ba157530fbcd4 Mon Sep 17 00:00:00 2001 From: David Cassany Date: Tue, 8 Nov 2016 18:40:51 +0100 Subject: [PATCH] Updated test for vhd-fixed subformat type --- test/unit/storage_subformat_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/storage_subformat_test.py b/test/unit/storage_subformat_test.py index befa29b4..1382294c 100644 --- a/test/unit/storage_subformat_test.py +++ b/test/unit/storage_subformat_test.py @@ -44,7 +44,7 @@ class TestDiskFormat(object): xml_state.build_type.get_vhdfixedtag = mock.Mock( return_value='disk-tag' ) - DiskFormat('vhdfixed', xml_state, 'root_dir', 'target_dir') + DiskFormat('vhd-fixed', xml_state, 'root_dir', 'target_dir') mock_vhdfixed.assert_called_once_with( xml_state, 'root_dir', 'target_dir', {'--tag': 'disk-tag'} )