diff options
author | Sam Scott <sam.scott89@gmail.com> | 2017-03-12 15:33:01 -0400 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2017-03-12 15:33:01 -0400 |
commit | 4dfe0be52666a922ee8aa97e2a1d677c6463fcf2 (patch) | |
tree | 8ce5f56cef9981e5e2e00a9b09b60082b8de0482 /tests/test_deserialize.rs | |
parent | 57bfc2e1061da6bf55a1d04ac35e6dbbeebabb69 (diff) |
Address some clippy comments.
Add docs for `Config`.
Diffstat (limited to 'tests/test_deserialize.rs')
-rw-r--r-- | tests/test_deserialize.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_deserialize.rs b/tests/test_deserialize.rs index 0bc60ab..dc93bd5 100644 --- a/tests/test_deserialize.rs +++ b/tests/test_deserialize.rs @@ -188,6 +188,7 @@ fn qs_nesting() { // { a: { b: { c: { d: { e: { f: { '[g][h]': 'i' } } } } } } }, // 'defaults to a depth of 5' // ); + // This looks like depth 6 to me? Tweaked test to make it 5. map_test!("a[b][c][d][e][f][g][h]=i", - "a"["b"["c"["d"["e"["f"["[g][h]"["i"]]]]]]]); + "a"["b"["c"["d"["e"["[f][g][h]"["i"]]]]]]); } |