tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/tests/matrix-appservice-irc: fix typing mismatch
Martin Weinelt
3 years ago
e215af71
6c1f44b3
+2
-1
1 changed file
expand all
collapse all
unified
split
nixos
tests
matrix
appservice-irc.nix
+2
-1
nixos/tests/matrix/appservice-irc.nix
···
193
193
194
194
testScript = ''
195
195
import pathlib
196
196
+
import os
196
197
197
198
start_all()
198
199
···
206
207
with subtest("copy the registration file"):
207
208
appservice.copy_from_vm("/var/lib/matrix-appservice-irc/registration.yml")
208
209
homeserver.copy_from_host(
209
209
-
pathlib.Path(os.environ.get("out", os.getcwd())) / "registration.yml", "/"
210
210
+
str(pathlib.Path(os.environ.get("out", os.getcwd())) / "registration.yml"), "/"
210
211
)
211
212
homeserver.succeed("chmod 444 /registration.yml")
212
213