summaryrefslogtreecommitdiff
path: root/test/data/ValidatingJsonDeserializerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/ValidatingJsonDeserializerTest.java')
-rw-r--r--test/data/ValidatingJsonDeserializerTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/data/ValidatingJsonDeserializerTest.java b/test/data/ValidatingJsonDeserializerTest.java
index fdaf27f..0e9ffba 100644
--- a/test/data/ValidatingJsonDeserializerTest.java
+++ b/test/data/ValidatingJsonDeserializerTest.java
@@ -364,7 +364,7 @@ public class ValidatingJsonDeserializerTest {
JsonObject tweet = new JsonObject();
tweet.addProperty("id", 4);
tweet.addProperty("lang", "X");
- tweet.addProperty("in_reply_to_user_id", 4);
+ tweet.addProperty("in_reply_to_status_id", 4);
tweet.addProperty("created_at", "Wed Apr 30 09:46:02 +0300 2014");
tweet.addProperty("favorite_count", 4);
tweet.add("place", JsonNull.INSTANCE);
@@ -465,7 +465,7 @@ public class ValidatingJsonDeserializerTest {
checkTweetPass(tweet);
tweet = buildMinimalTweet(buildMinimalUser());
- removeProperty(tweet, "in_reply_to_user_id");
+ removeProperty(tweet, "in_reply_to_status_id");
checkTweetPass(tweet);
tweet = buildMinimalTweet(buildMinimalUser());