Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven authored and Steven committed Apr 26, 2024
1 parent 54992f0 commit 15481c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from unittest import TestCase, mock
from unittest import mock
from unittest.mock import patch

import pytest
Expand Down Expand Up @@ -72,7 +72,7 @@ def test_read_json_successful(*args):
"""
response = read_json("path/to/open")
assert response == {"test": "test"}
assert response != None
assert response is not None


@mock.patch("builtins.open", side_effect=FileNotFoundError)
Expand Down

0 comments on commit 15481c9

Please sign in to comment.