(formatter)
| 1994 | mticker.FuncFormatter(lambda a: f'val: {a}'), |
| 1995 | mticker.FixedFormatter(('foo', 'bar')))) |
| 1996 | def test_set_offset_string(formatter): |
| 1997 | assert formatter.get_offset() == '' |
| 1998 | formatter.set_offset_string('mpl') |
| 1999 | assert formatter.get_offset() == 'mpl' |
| 2000 | |
| 2001 | |
| 2002 | def test_minorticks_on_multi_fig(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…