lol

nixos/tests/matrix-appservice-irc: fix typing mismatch

+2 -1
+2 -1
nixos/tests/matrix/appservice-irc.nix
··· 193 193 194 194 testScript = '' 195 195 import pathlib 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 - pathlib.Path(os.environ.get("out", os.getcwd())) / "registration.yml", "/" 210 + str(pathlib.Path(os.environ.get("out", os.getcwd())) / "registration.yml"), "/" 210 211 ) 211 212 homeserver.succeed("chmod 444 /registration.yml") 212 213