chore: adjust unmarshall benchmarks since they are now fast enough to hit the margin of error (#97)

This commit is contained in:
J. Nick Koston 2022-10-09 10:41:33 -10:00 committed by GitHub
parent 02383a2e05
commit 0ee88e4018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -27,6 +27,6 @@ def unmarhsall_bluez_rssi_message():
unmarshaller.unmarshall()
count = 1000000
count = 3000000
time = timeit.Timer(unmarhsall_bluez_rssi_message).timeit(count)
print(f"Unmarshalling {count} bluetooth rssi messages took {time} seconds")

View File

@ -46,7 +46,7 @@ def unmarhsall_bluez_rssi_message():
unmarshaller.unmarshall()
count = 1000000
count = 3000000
time = timeit.Timer(unmarhsall_bluez_rssi_message).timeit(count)
print(
f"Unmarshalling {count} bluetooth properties changed messages took {time} seconds"