aboutsummaryrefslogtreecommitdiff
path: root/tests/strategies.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-04-20 13:26:20 +0300
committerFrederick Muriuki Muriithi2022-04-20 13:26:20 +0300
commit5897b6ec7fbd1226cd68a292122cc494e46f6829 (patch)
treeeb7cf72b8da2546aded142e684b9b84ac02a23d9 /tests/strategies.py
parent8954890bd7410d79ce151196f406b8e1b6985238 (diff)
downloadgn-uploader-5897b6ec7fbd1226cd68a292122cc494e46f6829.tar.gz
Fix linting issues
Diffstat (limited to 'tests/strategies.py')
-rw-r--r--tests/strategies.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/strategies.py b/tests/strategies.py
deleted file mode 100644
index ccda362..0000000
--- a/tests/strategies.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""Module holding custom data generation strategies"""
-
-from hypothesis.strategies import characters, composite
-
-@composite
-def average_numbers_string(draw):
- num = draw(floats(allow_nan=False, allow_infinity=False,))
- return f"{num:.3f}"