Skip to content

Missing initial indentation in generated utPLSQL test packages #33

Closed
@PhilippSalvisberg

Description

@PhilippSalvisberg

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.

Metadata

Metadata

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions