From 0514cba94097c3818f0b760cb6a99d7b7cd42cfb Mon Sep 17 00:00:00 2001 From: kkoon Date: Fri, 18 Mar 2022 12:05:24 +0800 Subject: [PATCH] update Interface properties Signed-off-by: kkoon --- .../src/main/js/default/test/VolumeManager.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/storage/storagevolumesjstest/src/main/js/default/test/VolumeManager.test.js b/storage/storagevolumesjstest/src/main/js/default/test/VolumeManager.test.js index 28833ce9f..dbc144b38 100644 --- a/storage/storagevolumesjstest/src/main/js/default/test/VolumeManager.test.js +++ b/storage/storagevolumesjstest/src/main/js/default/test/VolumeManager.test.js @@ -45,13 +45,13 @@ describe("volumeManager", function () { var id = volumes[0].id; var uuid = volumes[0].uuid; var description = volumes[0].description; - var removeAble = volumes[0].removeAble; + var removable = volumes[0].removable; var state = volumes[0].state; var path = volumes[0].path; expect(isString(id)).assertTrue(); expect(isString(uuid)).assertTrue(); expect(isString(description)).assertTrue(); - expect(isBoolean(removeAble)).assertTrue(); + expect(isBoolean(removable)).assertTrue(); expect(isIntNum(state)).assertTrue(); expect(isString(path)).assertTrue(); } @@ -80,13 +80,13 @@ describe("volumeManager", function () { var id = volumes[0].id; var uuid = volumes[0].uuid; var description = volumes[0].description; - var removeAble = volumes[0].removeAble; + var removable = volumes[0].removable; var state = volumes[0].state; var path = volumes[0].path; expect(isString(id)).assertTrue(); expect(isString(uuid)).assertTrue(); expect(isString(description)).assertTrue(); - expect(isBoolean(removeAble)).assertTrue(); + expect(isBoolean(removable)).assertTrue(); expect(isIntNum(state)).assertTrue(); expect(isString(path)).assertTrue(); } -- GitLab