Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parsing of FT.PROFILE result #3063

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test
  • Loading branch information
dvora-h committed Dec 4, 2023
commit 20ef33c099d3f0f813e4817ae5815f084b434ec4
2 changes: 2 additions & 0 deletions tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def test_parse_to_dict():
"Child iterators",
["Type", "bar", "Time", "0.0729", "Counter", 3],
["Type", "barbar", "Time", "0.058", "Counter", 3],
["Type", "barbarbar", "Time", "0.0234", "Counter", 3],
],
],
]
Expand All @@ -49,6 +50,7 @@ def test_parse_to_dict():
"Child iterators": [
{"Counter": 3.0, "Time": 0.0729, "Type": "bar"},
{"Counter": 3.0, "Time": 0.058, "Type": "barbar"},
{"Counter": 3.0, "Time": 0.0234, "Type": "barbarbar"},
],
"Counter": 3.0,
"Time": 0.2089,
Expand Down
Loading