Closed
Description
Here's an example of a generated package specification without comments:
CREATE OR REPLACE PACKAGE test_type_util IS
--%suite(test_type_util)
--%suitepath(alltests)
--%context(dedup)
--%test
PROCEDURE dedup1;
--%test
PROCEDURE dedup2;
--%endcontext
END test_type_util;
/
The initial indentation within the package is missing. It should look as follows (using 3 indent spaces):
CREATE OR REPLACE PACKAGE test_type_util IS
--%suite(test_type_util)
--%suitepath(alltests)
--%context(dedup)
--%test
PROCEDURE dedup1;
--%test
PROCEDURE dedup2;
--%endcontext
END test_type_util;
/
Same issue with the package body.
Other indentations are not affected.