Skip to content

Commit

Permalink
updated the format by running spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremychoi committed Jan 8, 2024
1 parent 36bb3e6 commit 5078042
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
import org.parosproxy.paros.network.HttpHeaderField;
import org.parosproxy.paros.network.HttpMessage;
import org.parosproxy.paros.network.HttpRequestHeader;
import org.zaproxy.addon.spider.filters.FetchFilter.FetchStatus;
import org.zaproxy.addon.spider.parser.SpiderResourceFound;
import org.zaproxy.zap.testutils.TestUtils;
import org.zaproxy.addon.spider.filters.FetchFilter.FetchStatus;

/** Unit test for {@link SpiderController}. */
class SpiderControllerUnitTest extends TestUtils {
Expand Down Expand Up @@ -114,7 +114,8 @@ void shouldNotNotifySeedAsFoundUri() throws Exception {
// When
spiderController.addSeed(seed, HttpRequestHeader.GET, "HTTP/2");
// Then
verify(spider, times(0)).notifyListenersFoundURI(testURI, HttpRequestHeader.GET, FetchStatus.SEED);
verify(spider, times(0))
.notifyListenersFoundURI(testURI, HttpRequestHeader.GET, FetchStatus.SEED);
}

@Test
Expand Down

0 comments on commit 5078042

Please sign in to comment.