File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/services/backends/kubernetes
repositories/schema_repository Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ use tokio::time::Instant;
2222
2323pub mod schema_repository;
2424mod tests;
25- mod try_into_object_ref;
25+ pub mod try_into_object_ref;
2626
2727pub trait SoftDeleteResource :
2828 kube:: Resource < Scope = NamespaceResourceScope > + Clone + Debug + Serialize + DeserializeOwned + Send + Sync
Original file line number Diff line number Diff line change @@ -93,6 +93,10 @@ async fn test_update_schema(ctx: &mut KubernetesSchemaRepositoryTest) {
9393 . await
9494 . expect ( "Failed to upsert schema" ) ;
9595
96+ ctx. api
97+ . wait_for_creation ( name. to_string ( ) , ctx. namespace . to_string ( ) , DEFAULT_TEST_TIMEOUT )
98+ . await ;
99+
96100 let after = ctx. repository . get ( name. to_string ( ) ) . await . unwrap ( ) ;
97101
98102 // Assert
You can’t perform that action at this time.
0 commit comments