def test_remove_evidence_empty_evidence_id_raises_value_exception(self): Dispute.remove_evidence("dispute_id", " ")
def test_remove_evidence_evidence_none_id_raises_not_found_exception(self): Dispute.remove_evidence("dispute_id", None)
def test_remove_evidence_empty_dispute_id_raises_not_found_exception(self): Dispute.remove_evidence(" ", "evidence")