Remove print (#35408)

This commit is contained in:
Michael Goderbauer
2019-07-01 10:09:43 -07:00
committed by GitHub
parent ddd5ccd011
commit f357f8d19e

View File

@@ -11,7 +11,6 @@ void main() {
test('IconDataDiagnosticsProperty includes valueProperties in JSON', () {
IconDataProperty property = IconDataProperty('foo', const IconData(101010));
final Map<String, Object> valueProperties = property.toJsonMap(const DiagnosticsSerializationDelegate())['valueProperties'];
print(valueProperties);
expect(valueProperties['codePoint'], 101010);
property = IconDataProperty('foo', null);