Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Fix stupid error
Browse files Browse the repository at this point in the history
  • Loading branch information
clicman committed Aug 30, 2023
1 parent 8affa33 commit aba4395
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ before_install:
- google-chrome --version
install: true
script:
- mvn clean --settings $TRAVIS_BUILD_DIR/.travis/settings.xml install -Denv.customHost=https://api.postcodes.io/random/postcodes -Dmaven.javadoc.skip=true -Dgpg.skip -Dappium.url=$SAUCELABS_URL -B -V
- mvn clean --settings $TRAVIS_BUILD_DIR/.travis/settings.xml install -Denv.customHost=https://api.postcodes.io -Dmaven.javadoc.skip=true -Dgpg.skip -Dappium.url=$SAUCELABS_URL -B -V
deploy:
- provider: script
script: "$TRAVIS_BUILD_DIR/.travis/deploy.sh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import static org.hamcrest.Matchers.equalTo;

@Endpoint(method = Rest.GET, host = "${env.customHost}", path = "/get", title = "custom host")
@Endpoint(method = Rest.GET, host = "${env.customHost}", path = "/random/postcodes", title = "custom host")
public class CustomHost extends EndpointEntry {

@Validation(title = "result")
Expand Down

0 comments on commit aba4395

Please sign in to comment.