Skip to content

Commit

Permalink
Fix typo in name
Browse files Browse the repository at this point in the history
I HAVE BEEN WRITING SUPERVISOR WRONG MY WHOLE LIFE?
  • Loading branch information
yuvipanda committed Dec 23, 2018
1 parent 14fee2c commit 7405d29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions test_simperviser.py → test_simpervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pytest
import sys

import simperviser
import simpervisor

SLEEP_TIME = 0.5
SLEEP_WAIT_TIME = 0.7
Expand All @@ -21,7 +21,7 @@ async def test_start_success():
"""
Start a process & check its running status
"""
proc = simperviser.SupervisedProcess(
proc = simpervisor.SupervisedProcess(
*sleep(0), always_restart=False
)
await proc.start()
Expand All @@ -34,7 +34,7 @@ async def test_start_always_restarting():
"""
Start a process & check it restarts even when it succeeds
"""
proc = simperviser.SupervisedProcess(
proc = simpervisor.SupervisedProcess(
*sleep(0), always_restart=True
)
await proc.start()
Expand All @@ -54,7 +54,7 @@ async def test_start_fail_restarting():
"""
Start a process that fails & make sure it restarts
"""
proc = simperviser.SupervisedProcess(
proc = simpervisor.SupervisedProcess(
*sleep(1), always_restart=True
)
await proc.start()
Expand All @@ -75,7 +75,7 @@ async def test_start_multiple_start():
"""
Starting the same process multiple times should be a noop
"""
proc = simperviser.SupervisedProcess(
proc = simpervisor.SupervisedProcess(
*sleep(0), always_restart=True
)
await proc.start()
Expand Down

0 comments on commit 7405d29

Please sign in to comment.