summaryrefslogtreecommitdiff
path: root/test/data/ValidatingJsonDeserializerTest.java
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2014-06-02 11:32:39 +0200
committerPeter Wu <peter@lekensteyn.nl>2014-06-02 12:15:36 +0200
commit71cdb034f1f1218874d46cb57adac02d60793050 (patch)
tree55066661e4163e456a7f88353453827df21ed1de /test/data/ValidatingJsonDeserializerTest.java
parentc082d381d318721051b7ebac5c85ad9ef61969b1 (diff)
downloadDatafiller-71cdb034f1f1218874d46cb57adac02d60793050.tar.gz
Replace reply(user)id by replytweetid
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());