diff --git a/build.gradle.kts b/build.gradle.kts
index 14f2850e..7b6e22dd 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -48,7 +48,7 @@ dependencies {
 
     testImplementation("org.slf4j", "slf4j-api", slf4jVersion)
     testImplementation("org.slf4j", "slf4j-simple", slf4jVersion)
-
+    
     // integration-tests
     integrationTestImplementation("org.spockframework", "spock-core", spockVersion)
     integrationTestImplementation("org.codehaus.groovy", "groovy-all", groovyVersion)
diff --git a/jenkinsResources/core-version.txt b/jenkinsResources/core-version.txt
index b8b8d1ea..efd56a90 100644
--- a/jenkinsResources/core-version.txt
+++ b/jenkinsResources/core-version.txt
@@ -1 +1 @@
-2.246
\ No newline at end of file
+2.441
\ No newline at end of file
diff --git a/test/integration/groovy/jobConfigurationTest.groovy b/test/integration/groovy/jobConfigurationTest.groovy
index e3ded0b8..7418bccb 100644
--- a/test/integration/groovy/jobConfigurationTest.groovy
+++ b/test/integration/groovy/jobConfigurationTest.groovy
@@ -74,5 +74,6 @@ class jobConfigurationTest {
         rule.assertLogContains("v8version='8.3.12.1500'", run)
         rule.assertLogContains("sonarScannerToolName='sonar-scanner'", run)
         rule.assertLogContains("initMethod=FROM_SOURCE", run)
+        rule.assertLogContains("path='/src/cfe/тест'", run)
     }
 }
\ No newline at end of file
diff --git a/test/integration/resources/jobConfiguration.json b/test/integration/resources/jobConfiguration.json
index e027b9f9..38b207a9 100644
--- a/test/integration/resources/jobConfiguration.json
+++ b/test/integration/resources/jobConfiguration.json
@@ -1,6 +1,11 @@
 {
   "v8version": "8.3.12.1500",
   "initInfobase": {
-    "initMethod": "fromSource"
+    "initMethod": "fromSource",
+    "extensions": [{
+      "name": "Тест",
+      "initMethod": "fromSource",
+      "path": "/src/cfe/тест"
+    }]
   }
 }
\ No newline at end of file