Skip to content

Commit

Permalink
Deleting tests to get under big file limit
Browse files Browse the repository at this point in the history
  • Loading branch information
naswierczek committed Dec 23, 2023
1 parent 5e5ac3b commit 1586632
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_lpass.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ def test_lpass_bad_json_from_process(self, mock_check_output):
with self.assertRaises(json.JSONDecodeError):
lpass.lpass_field('my_name', 'field1')

@patch('db_facts.lpass.check_output')
def test_lpass_wrong_type_from_process(self, mock_check_output):
return_json = 1
mock_check_output.return_value = return_json
with self.assertRaises(TypeError):
lpass.lpass_field('my_name', 'field1')

@patch('db_facts.lpass.check_output')
def test_lpass_field_notes_uses_notesPlain(self, mock_check_output):
notes_json = json.dumps({'field': 'are you sick of json.dumps yet'})
Expand Down

0 comments on commit 1586632

Please sign in to comment.