diff --git a/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/FieldNodeJsTest.js b/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/FieldNodeJsTest.js index 3ca426cf3f5bd4f26d6eac5459a12d472e827ca5..9fea182771e053e2be942151a71645c63b0123e5 100644 --- a/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/FieldNodeJsTest.js +++ b/distributeddatamgr/distributedKVStoretest/distributedKVStorejstest/hap/src/main/js/test/FieldNodeJsTest.js @@ -153,19 +153,19 @@ describe('FieldNodeTest', function() { }) /** - * @tc.name SUB_DDM_DKV_FIELDNODE_DEFAULT_0100 + * @tc.name SUB_DDM_DKV_FIELDNODE_DEFAULT_0200 * @tc.desc Test Js Api FieldNode.nullable testcase 001 * @tc.type: FUNC - * @tc.number: SUB_DDM_DKV_FIELDNODE_NULLABLE_0100 + * @tc.number: SUB_DDM_DKV_FIELDNODE_DEFAULT_0200 */ - it('SUB_DDM_DKV_FIELDNODE_DEFAULT_0100', 0, async function(done) { + it('SUB_DDM_DKV_FIELDNODE_DEFAULT_0200', 0, async function(done) { try { let node = new ddm.FieldNode('first'); node.nullable = false; console.info('nullable = ' + node.nullable); expect(node.nullable === false).assertTrue() } catch (e) { - console.info("SUB_DDM_DKV_FIELDNODE_DEFAULT_0100 fail on exception: " + e); + console.info("SUB_DDM_DKV_FIELDNODE_DEFAULT_0200 fail on exception: " + e); } done(); })