Index: debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py =================================================================== --- debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py +++ debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py @@ -121,7 +121,9 @@ def _delete_conditional_breakpoint(self, file_, line, condition): for bp in self._debugger.Breakpoints: for bound_bp in bp.Children: - if (bound_bp.File == file_ and bound_bp.FileLine == line and + file = os.path.normcase(file_) + bound_bp_file = os.path.normcase(bound_bp.File) + if (bound_bp_file == file and bound_bp.FileLine == line and bound_bp.Condition == condition): bp.Delete() break