diff --git a/spring-core/pom.xml b/spring-core/pom.xml
index 60f3262f08..f1e2e2a748 100644
--- a/spring-core/pom.xml
+++ b/spring-core/pom.xml
@@ -85,6 +85,7 @@
1.16.12
2.5
1.5.2.RELEASE
+ 1.10.19
\ No newline at end of file
diff --git a/spring-core/src/test/java/com/baeldung/resource/SpringResourceIntegrationTest.java b/spring-core/src/test/java/com/baeldung/resource/SpringResourceIntegrationTest.java
index c1464feded..a7a2a9032a 100644
--- a/spring-core/src/test/java/com/baeldung/resource/SpringResourceIntegrationTest.java
+++ b/spring-core/src/test/java/com/baeldung/resource/SpringResourceIntegrationTest.java
@@ -108,8 +108,7 @@ public class SpringResourceIntegrationTest {
@Test
public void whenClassPathResourceWithRelativePath_thenReadSuccessful() throws IOException {
-// final File resource = new ClassPathResource("../../../data/employees.dat", SpringResourceIntegrationTest.class).getFile();
- final File resource = new ClassPathResource("/data/employees.dat", SpringResourceIntegrationTest.class).getFile();
+ final File resource = new ClassPathResource("../../../data/employees.dat", SpringResourceIntegrationTest.class).getFile();
final String employees = new String(Files.readAllBytes(resource.toPath()));
assertEquals(EMPLOYEES_EXPECTED, employees);
}