You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/05/17 20:00:46 UTC

[maven-javadoc-plugin] branch MJAVADOC-584 updated: can't assume predictable order

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MJAVADOC-584
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git


The following commit(s) were added to refs/heads/MJAVADOC-584 by this push:
     new a8ba158  can't assume predictable order
a8ba158 is described below

commit a8ba158ba709469da4f535082a14b923fafc3ac6
Author: rfscholte <rf...@apache.org>
AuthorDate: Mon May 17 22:00:33 2021 +0200

    can't assume predictable order
---
 src/it/projects/examples/exclude-package-names/verify.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/it/projects/examples/exclude-package-names/verify.groovy b/src/it/projects/examples/exclude-package-names/verify.groovy
index a20870b..42f0db0 100644
--- a/src/it/projects/examples/exclude-package-names/verify.groovy
+++ b/src/it/projects/examples/exclude-package-names/verify.groovy
@@ -25,6 +25,6 @@ def expectedPackages = ['com.mycompany.myapp',
 						'com.mycompany.myapp.package3.subpackage6',
 						'com.mycompany.myapp.package3.subpackage6.subsubpackage1',
 						'com.mycompany.myapp.package3.subpackage6.subsubpackage2',
-						'com.mycompany.myapp.package3.subpackage7']
+						'com.mycompany.myapp.package3.subpackage7'] as Set
 
-assert packages.readLines() == expectedPackages
+assert expectedPackages == packages.readLines() as Set