Skip to content

Commit 9abc2bb

Browse files
committed
Merge pull request skyscreamer#58 from carterpage/fix-build
Fixed imports
2 parents 39a2920 + 679658a commit 9abc2bb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/java/org/skyscreamer/jsonassert/ArrayValueMatcherTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
import java.text.MessageFormat;
88

9+
import org.json.JSONArray;
910
import org.json.JSONException;
11+
import org.json.JSONObject;
1012
import org.junit.Test;
1113
import org.skyscreamer.jsonassert.comparator.ArraySizeComparator;
1214
import org.skyscreamer.jsonassert.comparator.CustomComparator;
@@ -221,6 +223,7 @@ public void verifyEveryArrayElementWithCustomComparator() throws JSONException {
221223
customizations[i] = new Customization(contextPath, regExValueMatcher);
222224
}
223225
CustomComparator regExComparator = new CustomComparator(JSONCompareMode.STRICT_ORDER, customizations);
226+
224227
ArrayValueMatcher<Object> regExArrayValueMatcher = new ArrayValueMatcher<Object>(regExComparator);
225228
Customization regExArrayValueCustomization = new Customization("a", regExArrayValueMatcher);
226229
CustomComparator regExCustomArrayValueComparator = new CustomComparator(JSONCompareMode.STRICT_ORDER, new Customization[] { regExArrayValueCustomization });

0 commit comments

Comments
 (0)