owncast: fix tests eval

Without the change `tests` eval failed with missing attribute as:

    $ nix build --no-link -f. owncast.tests
    $ error: attribute 'testOwncast' missing
           39|   passthru.tests.owncast = nixosTests.testOwncast;
             |                            ^
           40|

From what I can see `nixos/tests/all-tests.nix` never had a
`testOwncast` attribute. Let's use `owncast` one.
This commit is contained in:
Sergei Trofimovich 2023-12-29 10:50:47 +00:00
parent d20560a3ad
commit 1c358dd771

View file

@ -36,7 +36,7 @@ in buildGoModule {
runHook postCheck
'';
passthru.tests.owncast = nixosTests.testOwncast;
passthru.tests.owncast = nixosTests.owncast;
meta = with lib; {
description = "self-hosted video live streaming solution";