Fix inverted assert condition

This commit is contained in:
Cameron Gutman 2020-10-18 20:08:55 -05:00
parent e53a1f90b0
commit 5116cfd141

View File

@ -26,7 +26,7 @@ class VideoStats {
this.measurementStartTimestamp = other.measurementStartTimestamp;
}
assert other.measurementStartTimestamp <= this.measurementStartTimestamp;
assert other.measurementStartTimestamp >= this.measurementStartTimestamp;
}
void copy(VideoStats other) {