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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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