about summary refs log tree commit diff
path: root/src/tests.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-06-17T13·18+0200
committerVincent Ambo <github@tazj.in>2018-06-17T13·46+0200
commit05fa4769290f7b6d493d6a8a11ae8cda4f9bba49 (patch)
treebc99913727222f0dd50ba06c817cced15c9f08be /src/tests.rs
parent68189d4872fcd2f9ba23c168a534b8bce2f26bb5 (diff)
fix(main): Correct name of JSON payload field
Diffstat (limited to 'src/tests.rs')
-rw-r--r--src/tests.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/tests.rs b/src/tests.rs
index 6840602eca55..1547855299bf 100644
--- a/src/tests.rs
+++ b/src/tests.rs
@@ -22,15 +22,17 @@ fn test_json_entry_serialization() {
     let entry = LogEntry {
         labels: Value::Null,
         timestamp: None,
-        payload: Payload::TextPayload {
-            text_payload: "test entry".into(),
+        payload: Payload::JsonPayload {
+            json_payload: json!({
+                "message": "JSON test"
+            })
         }
     };
 
-    let expected = "{\"labels\":null,\"textPayload\":\"test entry\"}";
+    let expected = "{\"labels\":null,\"jsonPayload\":{\"message\":\"JSON test\"}}";
     let result = to_string(&entry).expect("serialization failed");
 
-    assert_eq!(expected, result, "Plain text payload should serialize correctly")
+    assert_eq!(expected, result, "JSOn payload should serialize correctly")
 }
 
 #[test]