(key, parent string, active, r bool, l ...string)
| 826 | } |
| 827 | |
| 828 | func newSnapshot(key, parent string, active, r bool, l ...string) object { |
| 829 | return object{ |
| 830 | data: testSnapshot{ |
| 831 | key: key, |
| 832 | parent: parent, |
| 833 | active: active, |
| 834 | }, |
| 835 | removed: r, |
| 836 | labels: labelmap(l...), |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | func container(id, s string, l ...string) object { |
| 841 | return object{ |
no test coverage detected
searching dependent graphs…