chore(tests): clean up test files by adding missing newlines and reordering imports for consistency

This commit is contained in:
2026-01-02 20:36:42 -06:00
parent 4ea47b9dcf
commit adbf0a9ce9
9 changed files with 631 additions and 102 deletions

View File

@@ -1,8 +1,10 @@
import os
import tempfile
import pytest
from meshchatx.src.backend.database import Database
from meshchatx.src.backend.config_manager import ConfigManager
from meshchatx.src.backend.database import Database
@pytest.fixture
@@ -50,7 +52,7 @@ def test_config_manager_type_safety(db):
# IntConfig
config.lxmf_inbound_stamp_cost.set(
"15"
"15",
) # Should handle string to int if implementation allows or just store it
# Looking at implementation might be better, but let's test basic set/get
config.lxmf_inbound_stamp_cost.set(15)