Verified Commit 6d3035b0 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(test): remove accidentially leftover preceeding class for spy call

parent ac1082d1
......@@ -28,7 +28,7 @@ public class GitlabTicketTest
@BeforeEach
public void initBeforeEach()
{
instance = Mockito.spy(new GitlabTicket(mock(GitlabTicketSystem.class)));
instance = spy(new GitlabTicket(mock(GitlabTicketSystem.class)));
instance.getParent().baseUrl = "https://example.org";
OkHttpClient client = mock(OkHttpClient.class);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment