Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yacmov committed May 30, 2024
1 parent 53e8fae commit d24a37c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
Note: These tests use the pytest-mock plugin to replace calls to external resources with mock objects, ensuring that
tests remain fast and do not modify external state.
"""
import os, sys

import os
import sys
from app import utils


Expand Down Expand Up @@ -146,5 +146,4 @@ def test_set_port_for_macos():
port = 5000
if sys.platform.lower() in ["darwin", 'linux']:
port = 5002
assert not port == 5000

assert not port == 5000

0 comments on commit d24a37c

Please sign in to comment.