We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d9a8d0 commit 2710d00Copy full SHA for 2710d00
src/test/java/com/spotify/github/v3/clients/IssueClientTest.java
@@ -172,7 +172,7 @@ public void testGetIssue() throws IOException {
172
173
final var issue = issueClient.getIssue(2).join();
174
175
- assertThat(issue.id(), is(2));
+ assertThat(issue.id(), is(2L));
176
assertNotNull(issue.labels());
177
assertFalse(issue.labels().isEmpty());
178
assertThat(issue.labels().get(0).name(), is("bug"));
0 commit comments