Skip to content

Commit

Permalink
Merge pull request #15122 from batrick/test-fragment-error
Browse files Browse the repository at this point in the history
qa: fix float parse error in test_fragment

Reviewed-by: John Spray <john.spray@redhat.com>
Reviewed-by: Kefu Chai <kchai@redhat.com>
  • Loading branch information
John Spray committed May 24, 2017
2 parents 6ca92c5 + 4b72940 commit ee75318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/tasks/cephfs/test_fragment.py
Expand Up @@ -99,7 +99,7 @@ def test_rapid_creation(self):
mds_bal_split_size=split_size,
mds_bal_merge_size=merge_size,
mds_bal_split_bits=3,
mds_bal_fragment_size_max=(split_size * 1.5 + 2)
mds_bal_fragment_size_max=int(split_size * 1.5 + 2)
)

# We test this only at a single split level. If a client was sending
Expand Down

0 comments on commit ee75318

Please sign in to comment.