Skip to content

Commit 4df0aec

Browse files
committed
fixup tests
1 parent 6bab083 commit 4df0aec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dart/lib/src/protocol/breadcrumb.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ class Breadcrumb {
7272
if (requestDuration != null)
7373
'start_timestamp':
7474
timestamp.millisecondsSinceEpoch - requestDuration.inMilliseconds,
75-
'end_timestamp': timestamp.millisecondsSinceEpoch,
75+
if (requestDuration != null)
76+
'end_timestamp': timestamp.millisecondsSinceEpoch,
7677
},
7778
);
7879
}

0 commit comments

Comments
 (0)