()
| 1995 | assert not mutable_state.dirty_vars |
| 1996 | |
| 1997 | def assert_hashmap_dirty(): |
| 1998 | assert mutable_state.dirty_vars == {"hashmap"} |
| 1999 | mutable_state._clean() |
| 2000 | assert not mutable_state.dirty_vars |
| 2001 | |
| 2002 | # Test all dict operations |
| 2003 | mutable_state.hashmap.update({"new_key": 43}) |
no test coverage detected