Skip to content

Commit

Permalink
Merge pull request #3791 from bruntib/fix_fixit_test
Browse files Browse the repository at this point in the history
[test] Fix fixit test
  • Loading branch information
Szelethus committed Nov 11, 2022
2 parents fe0ac5b + 472d2cd commit 10e43bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion analyzer/tests/functional/fixit/test_fixit.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,11 @@ def content_hash(filename):
fixit_cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
cwd=self.test_workspace,
encoding="utf-8",
errors="ignore")
process.communicate()
process.communicate(input='[]')

new_hash_1 = content_hash(source_file1)
new_hash_2 = content_hash(source_file2)
Expand Down

0 comments on commit 10e43bc

Please sign in to comment.