Address comments.
diff --git a/tests/test_with_hypothesis.py b/tests/test_with_hypothesis.py
index 31dfa04..5a18121 100644
--- a/tests/test_with_hypothesis.py
+++ b/tests/test_with_hypothesis.py
@@ -1,3 +1,4 @@
+from hypothesis import given
 from hypothesis.strategies import binary
 
 import pytest
@@ -8,7 +9,7 @@
 hypothesis = pytest.importorskip("hypothesis")
 
 
-@hypothesis.given(binary())
+@given(binary())
 def test_fernet(data):
     f = Fernet(Fernet.generate_key())
     ct = f.encrypt(data)