[Gradle] Replace deprecated ARTIFACT_FORMAT attribute to correct artifactTypeDefinition

Because this is not supported by Gradle 9.0
diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts
index e52c3ae..8d154f0 100644
--- a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts
+++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts
@@ -31,7 +31,7 @@
         isCanBeResolved = true
         attributes {
             attribute(KotlinPlatformType.attribute, KotlinPlatformType.native)
-            attribute(ArtifactAttributes.ARTIFACT_FORMAT, FRAMEWORK)
+            attribute(ArtifactTypeDefinition.ARTIFACT_TYPE_ATTRIBUTE, FRAMEWORK)
             attribute(KotlinNativeTarget.kotlinNativeBuildTypeAttribute, request.buildType.name)
             attribute(Framework.frameworkTargets, request.targets.map { it.name }.toSet())
             if (request.name != null) {