Skip to content

Commit

Permalink
fixed test syntax err
Browse files Browse the repository at this point in the history
  • Loading branch information
emcf committed Mar 24, 2024
1 parent 096b390 commit 95b93d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_thepipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def test_extract_github(self):
self.assertEqual(type(chunks), list)
self.assertNotEqual(len(chunks), 0) # should have some repo contents

"""
def test_compress_with_llmlingua(self):
chunks = thepipe.extract.extract_from_source(source_string=self.files_directory+"/example.md")
new_chunks = thepipe.compress.compress_chunks(chunks)
Expand All @@ -85,5 +84,4 @@ def test_save_outputs(self):
self.assertTrue(os.path.exists('outputs/prompt.txt'))
with open('outputs/prompt.txt', 'r', encoding='utf-8') as file:
text = file.read()
self.assertIn('Hello, World!', text)
"""
self.assertIn('Hello, World!', text)

0 comments on commit 95b93d2

Please sign in to comment.