Skip to content

Commit

Permalink
Bump ndc-test also
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljharvey committed Dec 5, 2023
1 parent 981caa7 commit 840c4be
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
23 changes: 21 additions & 2 deletions 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 crates/ndc-sqlserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ thiserror = "1.0"

[dev-dependencies]
ndc-client = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.12" }
ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.11" }
ndc-test = { git = "https://github.com/hasura/ndc-spec.git", tag = "v0.1.0-rc.12" }

axum = "0.6.19"
axum-test-helper = "0.3.0"
Expand Down
4 changes: 3 additions & 1 deletion crates/ndc-sqlserver/tests/ndc_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ mod ndc_tests {
))
.serve(router.into_make_service());

let base_path = format!("http://{}", server.local_addr());
let base_path =
reqwest::Url::parse(format!("http://{}", server.local_addr()).as_str()).unwrap();

eprintln!("Starting the server on {}", base_path);

tokio::task::spawn(async {
Expand Down

0 comments on commit 840c4be

Please sign in to comment.