Skip to content

Commit

Permalink
refactor(comments): rename test file to match implementation
Browse files Browse the repository at this point in the history
Rename test_watch.py to test_comment_processor.py to match the renamed
implementation class and better reflect its testing scope. Updates imports
and class references accordingly.
  • Loading branch information
aweis89 committed Jan 5, 2025
1 parent 6978d90 commit 4dd6708
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path

from aider.io import InputOutput
from aider.watch import FileWatcher
from aider.comment_processor import CommentProcessor


def test_gitignore_patterns():
Expand Down Expand Up @@ -74,7 +74,7 @@ def get_rel_fname(self, fname):

io = InputOutput(pretty=False, fancy_input=False, yes=False)
coder = MinimalCoder(io)
watcher = FileWatcher(coder)
watcher = CommentProcessor(io, coder)
fixtures_dir = Path(__file__).parent.parent / "fixtures"

# Test Python fixture
Expand Down

0 comments on commit 4dd6708

Please sign in to comment.