diff --git a/gradle/junit-jupiter.gradle b/gradle/junit-jupiter.gradle index 2a4fc7aa..b8719f50 100644 --- a/gradle/junit-jupiter.gradle +++ b/gradle/junit-jupiter.gradle @@ -34,7 +34,7 @@ junitPlatform { filters { packages { - exclude 'understandingcollections.jmh' + exclude 'moreaboutcollections.jmh' } includeClassNamePattern '.*' } diff --git a/gradle/subprojects.gradle b/gradle/subprojects.gradle index 5a77a037..1ccbb942 100644 --- a/gradle/subprojects.gradle +++ b/gradle/subprojects.gradle @@ -4,13 +4,13 @@ project(':validating') { } } -project(':understandingcollections') { +project(':moreaboutcollections') { dependencies { compile project(':typeinfo') compile project(':collections') } jmh { - include = 'understandingcollections.jmh.*' + include = 'moreaboutcollections.jmh.*' } }