Skip to content

Commit 0cedb17

Browse files
committed
Improve naming of tests: implicit arrays vs. implicit append (#127)
1 parent 629a9d6 commit 0cedb17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

metafix/src/test/java/org/metafacture/metafix/MetafixRecordTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,7 @@ public void renameArrayOfHashes() {
15071507
}
15081508

15091509
@Test
1510-
public void copyIntoArrayOfHashesImplicitAppend() {
1510+
public void copyIntoImplicitArrayAppend() {
15111511
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
15121512
"copy_field('your.name','author[].$append.name')",
15131513
"remove_field('your')"),
@@ -1534,7 +1534,7 @@ public void copyIntoArrayOfHashesImplicitAppend() {
15341534
}
15351535

15361536
@Test
1537-
public void copyIntoArrayOfHashesImplicitPrepend() {
1537+
public void copyIntoImplicitArrayPrepend() {
15381538
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
15391539
"copy_field('your.name','author[].$prepend.name')",
15401540
"remove_field('your')"),
@@ -1561,7 +1561,7 @@ public void copyIntoArrayOfHashesImplicitPrepend() {
15611561
}
15621562

15631563
@Test
1564-
public void copyIntoArrayOfHashesExplicitAppend() {
1564+
public void copyIntoExplicitArrayAppend() {
15651565
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
15661566
"set_array('author[]')",
15671567
"copy_field('your.name','author[].$append.name')",

0 commit comments

Comments
 (0)