From d22c02b7936691340ea0efd097565a87151458fb Mon Sep 17 00:00:00 2001 From: Ryo Nakamura Date: Fri, 10 Mar 2023 22:06:46 +0900 Subject: remove numpy from test, and fix compiling single binary mscp --- test/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/util.py') diff --git a/test/util.py b/test/util.py index 76ac49e..ef68ca9 100644 --- a/test/util.py +++ b/test/util.py @@ -1,6 +1,5 @@ import hashlib -import numpy import os @@ -39,7 +38,7 @@ class File(): def make_content_random(self): with open(self.path, "wb") as f: - f.write(numpy.random.bytes(self.size)) + f.write(os.urandom(self.size)) def cleanup(self): os.remove(self.path) -- cgit v1.2.3