Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
import org.junit.After;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
Expand Down Expand Up @@ -78,6 +79,7 @@ public void tearDown() {
}

@Test
@Ignore("Requires server side fix, temporarily disable flaky test until the fix is ready")
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Including a link to a tracking issue in the @ignore message provides context for the required fix and helps track when the test can be re-enabled. Also, 'server-side' should be hyphenated when used as an adjective.

Suggested change
@Ignore("Requires server side fix, temporarily disable flaky test until the fix is ready")
@Ignore("Requires server-side fix, temporarily disable flaky test until the fix is ready")
References
  1. Stale comments can be kept if they are associated with a temporary code change, such as a disabled test.

public void testWriteRead() throws Exception {
String rowKey = UUID.randomUUID().toString();
String familyId = testEnvRule.env().getFamilyId();
Expand Down
Loading