Skip to content

Commit

Permalink
Fixes issue #4413: Undocumented IT requirement: Username "liquibase"
Browse files Browse the repository at this point in the history
Despite the title and description of issue #4413, the actual cause of
the failing IT was *not* an undocumented IT requirement, but the fact
that the author of the IT (unintentionally) used the static prefix
"liquibase" instead of the dynamic prefix provided by the test driver.

The solution hence is to replace the static prefix by the dynamic
prefix. Hence, there is nothing wrong with the test documentation.
  • Loading branch information
mkarg committed Jun 21, 2023
1 parent e78fad2 commit 19bcfc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@

<changeSet id="16" author="nvoxland">
<createView viewName="personView">
select * from liquibase.person
select * from ${loginUser}.person
</createView>
</changeSet>

Expand Down

0 comments on commit 19bcfc2

Please sign in to comment.