From c91dce4f77ae12453203f0a28b91efb6533cc095 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 9 Dec 2025 13:07:14 +0100 Subject: feat(rocie-server): Implement basic user handling and authentication --- crates/rocie-server/tests/product_parents/register.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/rocie-server/tests/product_parents/register.rs') diff --git a/crates/rocie-server/tests/product_parents/register.rs b/crates/rocie-server/tests/product_parents/register.rs index c84ffea..c9e48f2 100644 --- a/crates/rocie-server/tests/product_parents/register.rs +++ b/crates/rocie-server/tests/product_parents/register.rs @@ -1,8 +1,8 @@ use rocie_client::{ apis::{ - api_get_product_api::product_by_id, api_set_product_api::register_product, - api_set_product_parent_api::register_product_parent, - api_set_unit_property_api::register_unit_property, + api_get_auth_product_api::product_by_id, api_set_auth_product_api::register_product, + api_set_auth_product_parent_api::register_product_parent, + api_set_auth_unit_property_api::register_unit_property, }, models::{ProductParentStub, ProductStub, UnitPropertyStub}, }; @@ -14,7 +14,7 @@ use crate::{ #[tokio::test] async fn test_product_parent_register_roundtrip() { - let env = TestEnv::new(function_name!()); + let env = TestEnv::new(function_name!()).await; let parent_dairy = request!( env, -- cgit 1.4.1