Skip to content

Commit ec4e0bc

Browse files
committed
tests: fix ip check after the rename current_ip->ip
- Fixes tests for PR #139
1 parent f0b091f commit ec4e0bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

batchspawner/tests/test_spawners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def check_ip(spawner, value):
8484
if version_info < (0,7):
8585
assert spawner.user.server.ip == value
8686
else:
87-
assert spawner.current_ip == value
87+
assert spawner.ip == value
8888

8989
def test_spawner_start_stop_poll(db, io_loop):
9090
spawner = new_spawner(db=db)

0 commit comments

Comments
 (0)