[2.x] override sbt.Tests.Group hashCode (#9065)

This commit is contained in:
kenji yoshida 2026-04-12 02:40:28 +09:00 committed by GitHub
parent 6fe83aa021
commit 767ebec906
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -200,6 +200,8 @@ object Tests {
new Group(name, tests, runPolicy, tags)
}
override def hashCode(): Int = (name, tests, runPolicy, tags).##
override def equals(x$1: Any): Boolean = {
this.eq(x$1.asInstanceOf[Object]) || (x$1.isInstanceOf[Group] && ({
val Group$1: Group = x$1.asInstanceOf[Group]