(self)
| 35 | assert repr(self.case_insensitive_dict) == "{'Accept': 'application/json'}" |
| 36 | |
| 37 | def test_copy(self): |
| 38 | copy = self.case_insensitive_dict.copy() |
| 39 | assert copy is not self.case_insensitive_dict |
| 40 | assert copy == self.case_insensitive_dict |
| 41 | |
| 42 | @pytest.mark.parametrize( |
| 43 | "other, result", |