-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup a few typos #5855
Cleanup a few typos #5855
Conversation
@@ -120,7 +119,7 @@ void diffInPlace() { | |||
/* Assert that latest measurement is kept and set on {@code previous} */ | |||
assertThat(previous.getStartEpochNanos()).isEqualTo(0); | |||
assertThat(previous.getEpochNanos()).isEqualTo(1); | |||
OpenTelemetryAssertions.assertThat(previous.getAttributes()).isEqualTo(Attributes.empty()); | |||
Assertions.assertThat(previous.getAttributes()).isEqualTo(Attributes.empty()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
static import?
Assertions.assertThat(toPointData.getExemplars()).isEqualTo(pointData.getExemplars()); | ||
assertThat(toPointData.getStartEpochNanos()).isEqualTo(pointData.getStartEpochNanos()); | ||
assertThat(toPointData.getEpochNanos()).isEqualTo(pointData.getEpochNanos()); | ||
Assertions.assertThat(toPointData.getAttributes()).isEqualTo(pointData.getAttributes()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
static import?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's what I meant to do. 🤦
Codecov ReportAll modified lines are covered by tests ✅
... and 1 file with indirect coverage changes 📢 Thoughts on this report? Let us know!. |
No description provided.