Skip to content

Commit

Permalink
Fix code formatting in test_history.py
Browse files Browse the repository at this point in the history
  • Loading branch information
openhands-agent committed Jan 30, 2025
1 parent 26a40b4 commit e76fd50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/test_history.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for file history management."""

import tempfile
from pathlib import Path

Expand Down Expand Up @@ -80,4 +81,4 @@ def test_clear_history_resets_counter():
manager.add_history(path, 'new_content')
entries = manager.cache.get(f'{str(path)}:entries', [])
assert len(entries) == 1
assert entries[0].endswith(':0') # First key should end with :0
assert entries[0].endswith(':0') # First key should end with :0

0 comments on commit e76fd50

Please sign in to comment.