Skip to content

Commit

Permalink
[fix]UT
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxiao-supermap committed Sep 14, 2023
1 parent ca23f23 commit 50e50fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/leaflet/services/KnowledgeGraphServiceSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('KnowledgeGraphService', () => {
expect(res).not.toBeNull();
expect(res.type).toBe('processCompleted');
expect(res.result).not.toBeNull();
expect(res.result.length).toEqual(5);
expect(res.result.length).toEqual(6);
done();
} catch (exception) {
console.log("'query'案例失败:" + exception.name + ':' + exception.message);
Expand Down
2 changes: 1 addition & 1 deletion test/mapboxgl/services/KnowledgeGraphServiceSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ describe('KnowledgeGraphService', () => {
expect(res).not.toBeNull();
expect(res.type).toBe('processCompleted');
expect(res.result).not.toBeNull();
expect(res.result.length).toEqual(5);
expect(res.result.length).toEqual(6);
done();
} catch (exception) {
console.log("'query'案例失败:" + exception.name + ':' + exception.message);
Expand Down
2 changes: 1 addition & 1 deletion test/maplibregl/services/KnowledgeGraphServiceSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('KnowledgeGraphService', () => {
expect(res).not.toBeNull();
expect(res.type).toBe('processCompleted');
expect(res.result).not.toBeNull();
expect(res.result.length).toEqual(5);
expect(res.result.length).toEqual(6);
done();
} catch (exception) {
console.log("'query'案例失败:" + exception.name + ':' + exception.message);
Expand Down
2 changes: 1 addition & 1 deletion test/openlayers/services/KnowledgeGraphServiceSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('KnowledgeGraphService', () => {
expect(res).not.toBeNull();
expect(res.type).toBe('processCompleted');
expect(res.result).not.toBeNull();
expect(res.result.length).toEqual(5);
expect(res.result.length).toEqual(6);
done();
} catch (exception) {
console.log("'query'案例失败:" + exception.name + ':' + exception.message);
Expand Down
2 changes: 1 addition & 1 deletion test/resources/knowledgeGraphService.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 50e50fc

Please sign in to comment.