Skip to content

Commit 076f25a

Browse files
committed
update: server urls in index.html files
1 parent 970b8df commit 076f25a

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

tests/frontendIntegration/django2x/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

tests/frontendIntegration/django3x/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

tests/frontendIntegration/drf_async/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

tests/frontendIntegration/drf_sync/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

tests/frontendIntegration/fastapi-server/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

tests/frontendIntegration/flask-server/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
if (axios.default) {
1111
axios = axios.default;
1212
}
13-
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost.org:8080") {
13+
async function getNumberOfTimesRefreshCalled(BASE_URL = "http://localhost:8080") {
1414
let instance = axios.create();
1515
let response = await instance.get(BASE_URL + "/refreshCalledTime");
1616
return response.data;
1717
}
1818

19-
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost.org:8080") {
19+
async function getNumberOfTimesRefreshAttempted(BASE_URL = "http://localhost:8080") {
2020
let instance = axios.create();
2121
let response = await instance.get(BASE_URL + "/refreshAttemptedTime");
2222
return response.data;
2323
}
2424

25-
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost.org:8080") {
25+
async function getNumberOfTimesGetSessionCalled(BASE_URL = "http://localhost:8080") {
2626
let instance = axios.create();
2727
let response = await instance.get(BASE_URL + "/getSessionCalledTime");
2828
return response.data;
2929
}
3030

31-
async function getPackageVersion(BASE_URL = "http://localhost.org:8080") {
31+
async function getPackageVersion(BASE_URL = "http://localhost:8080") {
3232
let instance = axios.create();
3333
let response = await instance.get(BASE_URL + "/getPackageVersion");
3434
return response.data;

0 commit comments

Comments
 (0)