Skip to content

Commit a1b8ce2

Browse files
committed
Fix: Solve failing tests.
1 parent 96f88d1 commit a1b8ce2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packaging/aleph-vm/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Version: 0.1.8
33
Architecture: all
44
Maintainer: Aleph.im
55
Description: Aleph.im VM execution engine
6-
Depends: python3,python3-pip,python3-aiohttp,python3-msgpack,python3-aiodns,python3-alembic,python3-sqlalchemy,python3-setproctitle,redis,python3-aioredis,python3-psutil,sudo,acl,curl,systemd-container,squashfs-tools,debootstrap,python3-packaging,python3-cpuinfo,python3-nftables,python3-jsonschema,cloud-image-utils,ndppd,python3-yaml,python3-dotenv,python3-schedule,qemu-system-x86,qemu-utils,python3-systemd,python3-dbus,btrfs-progs,nftables,lshw,python3-jwcrypto
6+
Depends: python3,python3-pip,python3-aiohttp,python3-msgpack,python3-aiodns,python3-alembic,python3-sqlalchemy,python3-setproctitle,redis,python3-aioredis,python3-psutil,sudo,acl,curl,systemd-container,squashfs-tools,debootstrap,python3-packaging,python3-cpuinfo,python3-nftables,python3-jsonschema,cloud-image-utils,ndppd,python3-yaml,python3-dotenv,python3-schedule,qemu-system-x86,qemu-utils,python3-systemd,python3-dbus,btrfs-progs,nftables,lshw,python3-jwcrypto,python3-netifaces
77
Section: aleph-im
88
Priority: Extra

tests/supervisor/test_views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ async def test_v2_executions_list_one_vm(aiohttp_client, mock_app_with_pool, moc
398398
"stopping_at": None,
399399
"stopped_at": None,
400400
},
401-
"running": None,
401+
"running": False,
402402
}
403403
}
404404

@@ -413,7 +413,7 @@ async def test_v2_executions_list_vm_network(aiohttp_client, mocker, mock_app_wi
413413
vm_hash = "decadecadecadecadecadecadecadecadecadecadecadecadecadecadecadeca"
414414

415415
execution = VmExecution(
416-
vm_hash=hash,
416+
vm_hash=vm_hash,
417417
message=message,
418418
original=message,
419419
persistent=False,
@@ -472,7 +472,7 @@ async def test_v2_executions_list_vm_network(aiohttp_client, mocker, mock_app_wi
472472
"stopping_at": None,
473473
"stopped_at": None,
474474
},
475-
"running": None,
475+
"running": False,
476476
}
477477
}
478478

0 commit comments

Comments
 (0)