From a570c22221aeb7d664f46cfc3fca8ac223ac02e9 Mon Sep 17 00:00:00 2001 From: Daniel Ballinger Date: Tue, 31 Mar 2026 11:27:01 +1300 Subject: [PATCH] There is no @description tag in the ApexDoc comment format https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_doc_format.htm --- skills/generating-apex-test/assets/test-class-template.cls | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/generating-apex-test/assets/test-class-template.cls b/skills/generating-apex-test/assets/test-class-template.cls index 1cee33e..f02ae8e 100644 --- a/skills/generating-apex-test/assets/test-class-template.cls +++ b/skills/generating-apex-test/assets/test-class-template.cls @@ -1,7 +1,7 @@ /** - * @description Test class for {ClassUnderTest}. - * Tests bulk operations (251+ records), positive/negative paths, - * and exception handling. + * Test class for {ClassUnderTest}. + * Tests bulk operations (251+ records), positive/negative paths, + * and exception handling. */ @isTest private class {ClassUnderTest}Test {