From 96ececb068c9475ffd272a56b41722c48432b166 Mon Sep 17 00:00:00 2001 From: Jem Date: Tue, 27 Aug 2019 18:27:05 +0800 Subject: [PATCH] refactor(proto): refactor offset nd --- tests/test_audio_preprocessor.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_audio_preprocessor.py b/tests/test_audio_preprocessor.py index c0033289..096139eb 100644 --- a/tests/test_audio_preprocessor.py +++ b/tests/test_audio_preprocessor.py @@ -40,11 +40,8 @@ def test_video_preprocessor_service_realdata(self): client.send_message(msg) r = client.recv_message() for d in r.request.index.docs: - print("len(d.chunks)", len(d.chunks)) self.assertGreater(len(d.chunks), 0) for _ in range(len(d.chunks)): shape = blob2array(d.chunks[_].blob).shape - print("shape", blob2array(d.chunks[_].blob).shape) - print("raw_data", d.chunks[_].blob.data) self.assertEqual(len(shape), 1) - break +