tests: use lib.hm.types
instead of explicit import
This commit is contained in:
parent
57ede1369f
commit
1397570eea
|
@ -5,7 +5,6 @@ with lib;
|
||||||
let
|
let
|
||||||
|
|
||||||
dag = config.lib.dag;
|
dag = config.lib.dag;
|
||||||
hmTypes = import ../../../modules/lib/types.nix { inherit dag lib; };
|
|
||||||
|
|
||||||
result =
|
result =
|
||||||
let
|
let
|
||||||
|
@ -18,7 +17,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
options.tested.dag = mkOption {
|
options.tested.dag = mkOption {
|
||||||
type = with types; hmTypes.dagOf str;
|
type = hm.types.dagOf types.str;
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
|
@ -5,7 +5,6 @@ with lib;
|
||||||
let
|
let
|
||||||
|
|
||||||
dag = config.lib.dag;
|
dag = config.lib.dag;
|
||||||
hmTypes = import ../../../modules/lib/types.nix { inherit dag lib; };
|
|
||||||
|
|
||||||
result =
|
result =
|
||||||
let
|
let
|
||||||
|
@ -18,7 +17,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
options.tested.dag = mkOption {
|
options.tested.dag = mkOption {
|
||||||
type = with types; hmTypes.listOrDagOf str;
|
type = hm.types.listOrDagOf types.str;
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
Loading…
Reference in a new issue