Skip to content

Commit cded01f

Browse files
committed
amended content
1 parent 9c56cf3 commit cded01f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

challenger/src/main/resources/content/practice-sites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ These are full APIs online, which means you don't have to install anything and c
168168

169169
[Toolshop API](https://api.practicesoftwaretesting.com/api/documentation)
170170

171-
- [read our longer write up of Simple API with exercises here](/practice-sites/toolshop)
171+
- [read our longer write up of Simple API with exercises here](/practice-sites/apps/toolshop)
172172
- Toolshop API has a UI and an API backend. This allows you to experiment with the UI, open the network tab and see the relevant API requests, or use the API and double-check the results on screen in the UI.
173173
- Multiple versions of the Toolshop are available - with bugs and without
174174
- The Open API Swagger file is one of the most complete that I've seen, and is a great example of the capabilities of the format.

challengerAuto/src/test/java/uk/co/compendiumdev/simulator/SimulatorHttpTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ void step009_headRequestReturnsHeadersFromGet() {
327327
Assertions.assertEquals(expectedCount, getHeaders.size());
328328

329329
// remove the variable headers that are server based rather than app based
330-
List<String> headersToSkipComparison = Arrays.asList("Report-To", "Reporting-Endpoints", "Connection", "Date");
330+
List<String> headersToSkipComparison = Arrays.asList("Report-To", "Reporting-Endpoints", "Connection", "Date", "X-Railway-Request-Id");
331331
for (Header headHeader : headHeaders) {
332332
if (!headersToSkipComparison.contains(headHeader.getName())) {
333333
Assertions.assertEquals(

challengerAuto/src/test/java/uk/co/compendiumdev/sparkstart/Environment.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public static String getEnv(String urlPath){
1818

1919
public static String getBaseUri() {
2020

21+
if(true)
22+
return "https://thingifier-production.up.railway.app";
23+
2124
// return environment if want to run externally
2225
// if(true)
2326
// return "https://apichallenges.eviltester.com";

0 commit comments

Comments
 (0)