Skip to content

Commit 45c7db3

Browse files
committed
fix: typo on last node for api call tests
- Mistakenly changed the last node's port, this changes that
1 parent 8be43a3 commit 45c7db3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/typesense/api/APICallTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void setUpNoNearestNode() throws Exception {
2020
List<Node> nodes = new ArrayList<>();
2121
nodes.add(new Node("http","localhost","8108"));
2222
nodes.add(new Node("http","localhost","7108"));
23-
nodes.add(new Node("http","localhost","2108"));
23+
nodes.add(new Node("http","localhost","6108"));
2424
apiCall = new ApiCall(new Configuration(nodes, Duration.ofSeconds(3),"xyz"));
2525
}
2626

0 commit comments

Comments
 (0)