Skip to content
Merged
Show file tree
Hide file tree
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 @@ -28,8 +28,8 @@
/**
* Upgrade related test utility methods.
*/
public final class TestUpgradeUtils {
private TestUpgradeUtils() { }
public final class UpgradeTestUtils {
private UpgradeTestUtils() { }

/**
* Creates a VERSION file for the specified node type under the directory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.apache.hadoop.hdds.protocol.DatanodeDetails;
import org.apache.hadoop.hdds.protocol.proto.HddsProtos;
import org.apache.hadoop.ozone.container.common.statemachine.DatanodeStateMachine;
import org.apache.hadoop.ozone.upgrade.TestUpgradeUtils;
import org.apache.hadoop.ozone.upgrade.UpgradeTestUtils;
import org.apache.ozone.test.GenericTestUtils;
import org.junit.Assert;
import org.junit.Rule;
Expand Down Expand Up @@ -61,7 +61,7 @@ public void testStartupSlvLessThanMlv() throws Exception {

// Create version file with MLV > SLV, which should fail the
// DataNodeStateMachine construction.
TestUpgradeUtils.createVersionFile(datanodeSubdir,
UpgradeTestUtils.createVersionFile(datanodeSubdir,
HddsProtos.NodeType.DATANODE, mlv);

try {
Expand Down
Loading