Update labels_integration_tests.rs

This commit is contained in:
Jon Fuller 2025-06-20 18:12:43 -07:00 committed by GitHub
parent f4cbcb4a3f
commit 96debaf511
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ impl TestClient {
fn new() -> Self {
Self {
client: Client::new(),
base_url: "http://localhost:3001".to_string(),
base_url: "http://localhost:8000".to_string(),
auth_token: None,
}
}
@ -654,4 +654,4 @@ async fn test_label_permissions() -> Result<(), Box<dyn std::error::Error>> {
println!("Label permissions test completed successfully!");
Ok(())
}
}