Skip to content

Commit

Permalink
fix: wrong values for node endpoint properties!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Oct 1, 2024
1 parent 5fad236 commit 79aa354
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def setUpClass(cls):
content: 'Post 1',
createdAt: '2023-01-01T00:00:00Z',
topicId: 'topic-uuid',
endpoint: 'forum-uuid',
endpoint: 'http://test_forum',
raw: "Sample Text 1",
postNumber: 1.0
}
Expand All @@ -43,12 +43,12 @@ def setUpClass(cls):
content: 'Post 2',
createdAt: '2023-01-02T00:00:00Z',
topicId: 'topic-uuid',
endpoint: 'forum-uuid',
endpoint: 'http://test_forum',
raw: "Sample Text 2",
postNumber: 2.0
}
),
(t:DiscourseTopic {id: 'topic-uuid', endpoint: 'forum-uuid'}),
(t:DiscourseTopic {id: 'topic-uuid', endpoint: 'http://test_forum'}),
(c:DiscourseCategory {id: 'category1', name: 'Category 1'}),
(p1)<-[:HAS_POST]-(t),
(p2)<-[:HAS_POST]-(t),
Expand Down

0 comments on commit 79aa354

Please sign in to comment.