Skip to content

Commit 10d0824

Browse files
authored
Bug fix from PR apache#4247 (apache#4265)
1 parent 8a30262 commit 10d0824

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/main/java/org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ public void testSelectedFilesReordering() throws Exception {
631631
*
632632
* <pre>
633633
* {
634-
* "txid": "FATE:META:123456",
634+
* "fateId": "FATE:META:123456",
635635
* "selAll": true,
636636
* "files": ["/path/to/file1.rf", "/path/to/file2.rf"]
637637
* }
@@ -640,7 +640,7 @@ public void testSelectedFilesReordering() throws Exception {
640640
public static String createSelectedFilesJson(FateId fateId, boolean selAll,
641641
Collection<String> paths) {
642642
String filesJsonArray = GSON.get().toJson(paths);
643-
return ("{'txid':'" + fateId + "','selAll':" + selAll + ",'files':" + filesJsonArray + "}")
643+
return ("{'fateId':'" + fateId + "','selAll':" + selAll + ",'files':" + filesJsonArray + "}")
644644
.replace('\'', '\"');
645645
}
646646

0 commit comments

Comments
 (0)