Skip to content

Commit

Permalink
fix(#18): revert localhost environment in UserDocumentationTest
Browse files Browse the repository at this point in the history
  • Loading branch information
tpz committed Feb 1, 2024
1 parent 3fb110f commit f10fdb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ Stream<DynamicNode> testDocumentation() throws IOException {
.filter(path -> path.toString().endsWith(".md"))
.map(it -> {
final List<DynamicTest> tests = this.createTests(
Environment.LOCALHOST,
Environment.DEMO_SERVER,
it,
new ExampleFilter[] {
ExampleFilter.CSHARP,
Expand Down Expand Up @@ -438,7 +438,7 @@ Stream<DynamicNode> testDocumentation() throws IOException {
@Disabled
Stream<DynamicTest> testSingleFileDocumentation() {
return this.createTests(
Environment.LOCALHOST,
Environment.DEMO_SERVER,
getRootDirectory().resolve("documentation/user/en/query/requirements/histogram.md"),
ExampleFilter.values()
).stream();
Expand Down

0 comments on commit f10fdb3

Please sign in to comment.