Skip to content

Commit

Permalink
fix: fix error in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
marieaurore123 committed Dec 2, 2024
1 parent f13593b commit 5f8a555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rig-neo4j/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct FakeDefinition {
#[tokio::test]
async fn vector_search_test() {
let mount = Mount::volume_mount("data", std::env::var("GITHUB_WORKSPACE").unwrap());
// Setup a local MongoDB Atlas container for testing. NOTE: docker service must be running.
// Setup a local Neo 4J container for testing. NOTE: docker service must be running.
let container = GenericImage::new("neo4j", "latest")
.with_wait_for(WaitFor::Duration {
length: std::time::Duration::from_secs(5),
Expand All @@ -37,7 +37,7 @@ async fn vector_search_test() {
.with_env_var("NEO4J_AUTH", "none")
.start()
.await
.expect("Failed to start MongoDB Atlas container");
.expect("Failed to start Neo 4J container");

let port = container.get_host_port_ipv4(BOLT_PORT).await.unwrap();
let host = container.get_host().await.unwrap().to_string();
Expand Down

0 comments on commit 5f8a555

Please sign in to comment.