()
| 2852 | assert not mutable_state.dirty_vars |
| 2853 | |
| 2854 | def assert_hashmap_dirty(): |
| 2855 | assert mutable_state.dirty_vars == {"hashmap"} |
| 2856 | mutable_state._clean() |
| 2857 | assert not mutable_state.dirty_vars |
| 2858 | |
| 2859 | # Test all dict operations |
| 2860 | mutable_state.hashmap.update({"new_key": "43"}) |
no test coverage detected