Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
state changes
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Aug 11, 2023
1 parent 20ce06e commit d516b03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
import java.util.List;

/**
* Contents in State.
* Changes inside State.
*
* @author Aliaksei Bialiauski ([email protected])
* @since 0.0.0
*/
public final class Contents implements Scalar<List<String>> {
public final class StateChanges implements Scalar<List<String>> {

/**
* XPATH lists.
Expand All @@ -53,7 +53,7 @@ public final class Contents implements Scalar<List<String>> {
* @param lst XPATH list
* @param cmg CMIG directory
*/
public Contents(final XpathList lst, final String cmg) {
public StateChanges(final XpathList lst, final String cmg) {
this.list = lst;
this.cmig = cmg;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@
import java.util.List;

/**
* Test suite for {@link Contents}.
* Test suite for {@link StateChanges}.
*
* @author Aliaksei Bialiauski ([email protected])
* @since 0.0.0
*/
final class ContentsTest {
final class StateChangesTest {

@Test
void readsContentsInRightFormat() throws Exception {
final List<String> value = new Contents(
final List<String> value = new StateChanges(
new Names(
"cmig/master.xml", "1"
),
Expand Down

0 comments on commit d516b03

Please sign in to comment.