Merge pull request #98 from apache/dependabot/maven/org.junit-junit-bom-5.9.0

Bump junit-bom from 5.8.2 to 5.9.0
diff --git a/pom.xml b/pom.xml
index f4cd6cc..df763be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,7 +160,7 @@
       <dependency>
         <groupId>org.junit</groupId>
         <artifactId>junit-bom</artifactId>
-        <version>5.8.2</version>
+        <version>5.9.0</version>
         <scope>import</scope>
         <type>pom</type>
       </dependency>
diff --git a/scim-spec/scim-spec-protocol/src/test/java/org/apache/directory/scim/spec/protocol/filter/FilterBuilderGreaterTest.java b/scim-spec/scim-spec-protocol/src/test/java/org/apache/directory/scim/spec/protocol/filter/FilterBuilderGreaterTest.java
index d312e9f..7cd482b 100644
--- a/scim-spec/scim-spec-protocol/src/test/java/org/apache/directory/scim/spec/protocol/filter/FilterBuilderGreaterTest.java
+++ b/scim-spec/scim-spec-protocol/src/test/java/org/apache/directory/scim/spec/protocol/filter/FilterBuilderGreaterTest.java
@@ -67,7 +67,7 @@
 
   @ParameterizedTest
   @MethodSource("getLongExamples")
-  public void getLongExamples(Long arg) throws FilterParseException {
+  public void testGreaterThan_Long(Long arg) throws FilterParseException {
     Filter filter = FilterBuilder.create().greaterThan("dog.weight", arg).build();
     Filter expected = new Filter("dog.weight GT " + arg);
     // values are parsed to integers, use string comparison