()
| 1590 | |
| 1591 | |
| 1592 | def test_norm_deepcopy(): |
| 1593 | norm = mcolors.LogNorm() |
| 1594 | norm.vmin = 0.0002 |
| 1595 | norm2 = copy.deepcopy(norm) |
| 1596 | assert norm2.vmin == norm.vmin |
| 1597 | assert isinstance(norm2._scale, mscale.LogScale) |
| 1598 | norm = mcolors.Normalize() |
| 1599 | norm.vmin = 0.0002 |
| 1600 | norm2 = copy.deepcopy(norm) |
| 1601 | assert norm2._scale is None |
| 1602 | assert norm2.vmin == norm.vmin |
| 1603 | |
| 1604 | |
| 1605 | def test_set_clim_emits_single_callback(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…