From f88f262b8a4d5e2a6eb601529a5afd9aa22c4938 Mon Sep 17 00:00:00 2001 From: Jacob Torrey Date: Fri, 27 Oct 2023 16:54:09 +0000 Subject: [PATCH] Fix testing script to reference packaged ZipPy Signed-off-by: Jacob Torrey --- test_zippy_detect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_zippy_detect.py b/test_zippy_detect.py index 1ecd5b0..2274314 100644 --- a/test_zippy_detect.py +++ b/test_zippy_detect.py @@ -2,8 +2,8 @@ import pytest, os, jsonlines, csv from warnings import warn -from zippy import Zippy, EnsembledZippy, PRELUDE_STR, LzmaLlmDetector, BrotliLlmDetector, ZlibLlmDetector, CompressionEngine -import zippy +from zippy.zippy import Zippy, EnsembledZippy, PRELUDE_STR, LzmaLlmDetector, BrotliLlmDetector, ZlibLlmDetector, CompressionEngine +import zippy.zippy AI_SAMPLE_DIR = 'samples/llm-generated/' HUMAN_SAMPLE_DIR = 'samples/human-generated/'