Skip to content

Commit

Permalink
[unix][tests] fix bad conversion in tests
Browse files Browse the repository at this point in the history
Fix tests associated with DataDog#1912.
  • Loading branch information
yannmh authored and urosgruber committed Dec 23, 2015
1 parent bef9531 commit 51e32d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/checks/mock/test_sysstat.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def testDiskLatency(self):

self.assertEqual(
results["disk0"],
{'system.io.bytes_per_s': float(0.02 * 10**6),}
{'system.io.bytes_per_s': float(0.02 * 2**20),}
)
self.assertEqual(
results["disk1"],
Expand Down

0 comments on commit 51e32d8

Please sign in to comment.