From b805bf554b4278b2d70b5f02c723cd7faa4f4add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20M=C3=A9sz=C3=A1ros?= Date: Fri, 13 Mar 2026 20:21:15 +0100 Subject: [PATCH] fix: fix junit module name in AGENTS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Attila Mészáros --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 62e19f3b69..2c311dac1d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -25,7 +25,7 @@ Java Operator SDK is a production-ready framework for building Kubernetes Operat java-operator-sdk/ ├── operator-framework-core/ # Core reconciliation engine and API ├── operator-framework/ # Main operator framework implementation -├── operator-framework-junit5/ # Testing utilities and extensions +├── operator-framework-junit/ # Testing utilities and extensions ├── operator-framework-bom/ # Bill of Materials for dependency management ├── micrometer-support/ # Metrics integration ├── open-telemetry-support/ # Distributed tracing support @@ -121,7 +121,7 @@ java-operator-sdk/ ### Integration Tests -- Use `LocallyRunOperatorExtension` or `OperatorExtension` from `operator-framework-junit5` +- Use `LocallyRunOperatorExtension` or `OperatorExtension` from `operator-framework-junit` - Test against real Kubernetes API (typically via test cluster like minikube or kind) - Suffix with `IT` (e.g., `MyReconcilerIT`) - Located in `src/test/java`