Skip to content

Commit

Permalink
Fix broken OpenAPI download test
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Jan 13, 2020
1 parent fb65776 commit bf99b6c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.8.7 (2020-01-14)

- fix(test): Fix broken OpenAPI download test

## v0.8.6 (2020-01-13)

- new(web): POST /events/\<ids>/archive for scouts and admins to archive multiple events
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openfairdb"
version = "0.8.6"
version = "0.8.7"
authors = ["Markus Kohlhase <[email protected]>", "slowtec GmbH <[email protected]>"]
keywords = ["geo", "fair", "sustainability"]
homepage = "https://github.com/kartevonmorgen/openfairdb"
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.2
info:
title: OpenFairDB API
version: 0.8.6
version: 0.8.7
contact:
name: slowtec GmbH
url: 'https://slowtec.de'
Expand Down
2 changes: 1 addition & 1 deletion src/ports/web/api/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ fn count_most_popular_tags_on_empty_db_to_verify_sql() {
#[test]
fn openapi() {
let (client, _) = setup();
let req = client.get("/server/api.yaml");
let req = client.get("/server/openapi.yaml");
let mut response = req.dispatch();
assert_eq!(response.status(), Status::Ok);
assert_eq!(
Expand Down

0 comments on commit bf99b6c

Please sign in to comment.