LoslegenKostenlos loslegen

Fix the Case-Sensitivity Bug

The code-reviewer found an issue: artist search is case-sensitive even though the help text says it's not. Searching for "acdc" won't find "AC/DC" — that's a poor user experience.

The fix requires adding COLLATE NOCASE to the SQL query. Ask Claude to fix this bug in reporter.py, then run the tests to verify the fix works.

Diese Übung ist Teil des Kurses

Software Development with Claude Code

Kurs anzeigen

Anleitung zur Übung

  • Start Claude Code with claude.
  • Ask Claude to fix the case-sensitivity bug in @reporter.py. The LIKE query needs COLLATE NOCASE.
  • Ask Claude to run the tests with pytest to verify the fix.
  • When done, type /exit to exit Claude Code.

Interaktive Übung

In dieser interaktiven Übung kannst du die Theorie in die Praxis umsetzen.

Übung starten