From de433ef68203d0413a894b914b4e41cfc1415b49 Mon Sep 17 00:00:00 2001 From: yanglifeng1217 Date: Wed, 7 Jun 2023 17:33:11 +0800 Subject: [PATCH] Signed-off-by: yanglifeng1217 --- .../hap/src/main/js/test/FieldNodeJsTest.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 3ca426cf3..9fea18277 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(); }) -- GitLab