Skip to content

Commit 161350f

Browse files
committed
use the right template constant in test
1 parent e2d24d0 commit 161350f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/spotify/github/v3/clients/IssueClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public void testDeleteIssueCommentReaction() {
220220
long commentId = 42;
221221
long reactionId = 385825;
222222
final String path =
223-
format(COMMENTS_REACTION_TEMPLATE + "/%s", "someowner", "somerepo", commentId, reactionId);
223+
format(COMMENTS_REACTION_ID_TEMPLATE, "someowner", "somerepo", commentId, reactionId);
224224
HttpResponse mockResponse = mock(HttpResponse.class);
225225
when(mockResponse.statusCode()).thenReturn(204);
226226
when(github.delete(eq(path))).thenReturn(completedFuture(mockResponse));

0 commit comments

Comments
 (0)