Skip to content

Commit

Permalink
Improve naming of tests: implicit arrays vs. implicit append (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Sep 25, 2024
1 parent 629a9d6 commit 0cedb17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,7 @@ public void renameArrayOfHashes() {
}

@Test
public void copyIntoArrayOfHashesImplicitAppend() {
public void copyIntoImplicitArrayAppend() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"copy_field('your.name','author[].$append.name')",
"remove_field('your')"),
Expand All @@ -1534,7 +1534,7 @@ public void copyIntoArrayOfHashesImplicitAppend() {
}

@Test
public void copyIntoArrayOfHashesImplicitPrepend() {
public void copyIntoImplicitArrayPrepend() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"copy_field('your.name','author[].$prepend.name')",
"remove_field('your')"),
Expand All @@ -1561,7 +1561,7 @@ public void copyIntoArrayOfHashesImplicitPrepend() {
}

@Test
public void copyIntoArrayOfHashesExplicitAppend() {
public void copyIntoExplicitArrayAppend() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"set_array('author[]')",
"copy_field('your.name','author[].$append.name')",
Expand Down

0 comments on commit 0cedb17

Please sign in to comment.