You need to sign in or sign up before continuing.
提交 3ef96db3 编写于 作者: K kkoon

update Interface properties

Signed-off-by: Nkkoon <kongzheng6@huawei.com>
上级 95d17329
...@@ -45,13 +45,13 @@ describe("volumeManager", function () { ...@@ -45,13 +45,13 @@ describe("volumeManager", function () {
var id = volumes[0].id; var id = volumes[0].id;
var uuid = volumes[0].uuid; var uuid = volumes[0].uuid;
var description = volumes[0].description; var description = volumes[0].description;
var removeAble = volumes[0].removeAble; var removable = volumes[0].removable;
var state = volumes[0].state; var state = volumes[0].state;
var path = volumes[0].path; var path = volumes[0].path;
expect(isString(id)).assertTrue(); expect(isString(id)).assertTrue();
expect(isString(uuid)).assertTrue(); expect(isString(uuid)).assertTrue();
expect(isString(description)).assertTrue(); expect(isString(description)).assertTrue();
expect(isBoolean(removeAble)).assertTrue(); expect(isBoolean(removable)).assertTrue();
expect(isIntNum(state)).assertTrue(); expect(isIntNum(state)).assertTrue();
expect(isString(path)).assertTrue(); expect(isString(path)).assertTrue();
} }
...@@ -80,13 +80,13 @@ describe("volumeManager", function () { ...@@ -80,13 +80,13 @@ describe("volumeManager", function () {
var id = volumes[0].id; var id = volumes[0].id;
var uuid = volumes[0].uuid; var uuid = volumes[0].uuid;
var description = volumes[0].description; var description = volumes[0].description;
var removeAble = volumes[0].removeAble; var removable = volumes[0].removable;
var state = volumes[0].state; var state = volumes[0].state;
var path = volumes[0].path; var path = volumes[0].path;
expect(isString(id)).assertTrue(); expect(isString(id)).assertTrue();
expect(isString(uuid)).assertTrue(); expect(isString(uuid)).assertTrue();
expect(isString(description)).assertTrue(); expect(isString(description)).assertTrue();
expect(isBoolean(removeAble)).assertTrue(); expect(isBoolean(removable)).assertTrue();
expect(isIntNum(state)).assertTrue(); expect(isIntNum(state)).assertTrue();
expect(isString(path)).assertTrue(); expect(isString(path)).assertTrue();
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册