🎨 Auto-format GDScript code

Automated formatting applied by tools/run_development.py

🤖 Generated by Gitea Actions
Workflow: Continuous Integration
Run: http://server:3000/nett00n/skelly/actions/runs/90
This commit is contained in:
Gitea Actions
2025-10-01 11:05:19 +00:00
parent 3b8da89ad5
commit 1f1c394587
28 changed files with 655 additions and 1945 deletions

View File

@@ -58,9 +58,7 @@ func test_migration_compatibility():
# The checksums should be different (old system broken)
TestHelperClass.assert_not_equal(
old_checksum,
new_checksum,
"Old and new checksum formats should be different"
old_checksum, new_checksum, "Old and new checksum formats should be different"
)
print("Old checksum: %s" % old_checksum)
print("New checksum: %s" % new_checksum)
@@ -87,13 +85,9 @@ func test_migration_compatibility():
print("Consistent checksum: %s" % first_checksum)
TestHelperClass.print_step("Migration Strategy Verification")
TestHelperClass.assert_true(
true, "Version-based checksum handling implemented"
)
TestHelperClass.assert_true(true, "Version-based checksum handling implemented")
print("✓ Files without _checksum: Allow (backward compatibility)")
print(
"✓ Files with version < current: Recalculate checksum after migration"
)
print("✓ Files with version < current: Recalculate checksum after migration")
print("✓ Files with current version: Use new checksum validation")