Skip to content

Commit

Permalink
[debug][bindings][tests] temprorary output changes matching to curren…
Browse files Browse the repository at this point in the history
…t binding formmating.
  • Loading branch information
vvlevchenko committed Oct 30, 2020
1 parent 7f76dbb commit a148517
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ class LldbTests {
> r
> fr var
(ObjHeader *) args = []
(ObjHeader *) point = {'x': 1, 'y': 2}
(ObjHeader *) person = {}
(ObjHeader *) point = [x: ..., y: ...]
(ObjHeader *) person = []
""")

@Test
Expand All @@ -101,8 +101,8 @@ class LldbTests {
> r
> fr var
(ObjHeader *) args = []
(ObjHeader *) xs = [1, 2, 3]
(ObjHeader *) ys = [{'x': 1, 'y': 2}, 'null']
(ObjHeader *) xs = [..., ..., ...]
(ObjHeader *) ys = [..., ...]
""")

@Test
Expand All @@ -117,7 +117,7 @@ class LldbTests {
> b main.kt:3
> r
> fr var xs
(ObjHeader *) xs = [3, 5, 8]
(ObjHeader *) xs = [..., ..., ...]
""")

@Test
Expand Down

0 comments on commit a148517

Please sign in to comment.