Skip to content

Commit

Permalink
Optimized line breaks in BUP doc
Browse files Browse the repository at this point in the history
  • Loading branch information
martingrossmann committed Nov 5, 2021
1 parent b7fe093 commit 11b553a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/src/docs/modules/browser-up-proxy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public class AbstractTest extends TesterraTest {
@BeforeSuite
public void setupProxy() throws MalformedURLException {
URL apiUrl = new URL("http://localhost:8080");
BrowserUpRemoteProxyManager bupRemoteProxyManager = new BrowserUpRemoteProxyManager(apiUrl);
BrowserUpRemoteProxyManager bupRemoteProxyManager
= new BrowserUpRemoteProxyManager(apiUrl);
bupProxybupRemoteProxyManager.startServer(bupProxy);
/* Additional Proxy setup here */
Expand All @@ -67,7 +68,8 @@ public class AbstractTest extends TesterraTest {
public void tearDownProxy() throws MalformedURLException {
URL apiBaseUrl = new URL("http://localhost:8080");
BrowserUpRemoteProxyManager browserUpRemoteProxyManager = new BrowserUpRemoteProxyManager(apiBaseUrl);
BrowserUpRemoteProxyManager browserUpRemoteProxyManager
= new BrowserUpRemoteProxyManager(apiBaseUrl);
for (Integer proxyPort : browserUpRemoteProxyManager.getProxies()) {
BrowserUpRemoteProxyServer bupToStop = new BrowserUpRemoteProxyServer();
Expand Down

0 comments on commit 11b553a

Please sign in to comment.