Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
hsjobeki authored and DavHau committed Oct 17, 2023
1 parent afdb019 commit 9c1e567
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
9 changes: 3 additions & 6 deletions tests/nix-unit/test_graph_utils/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
lib ? import <nixpkgs/lib>,
...
}: let
{lib ? import <nixpkgs/lib>, ...}: let
findCyclesTests = import ./findCycles.nix {inherit lib;};
sanitizeGraphTests = import ./sanitizeGraph.nix {inherit lib;};
in {
inherit findCyclesTests sanitizeGraphTests;
}
inherit findCyclesTests sanitizeGraphTests;
}
5 changes: 1 addition & 4 deletions tests/nix-unit/test_graph_utils/findCycles.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
lib ? import <nixpkgs/lib>,
...
}: let
{lib ? import <nixpkgs/lib>, ...}: let
utils = import ../../../lib/internal/graphUtils.nix {inherit lib;};
in {
test_simple = {
Expand Down
5 changes: 1 addition & 4 deletions tests/nix-unit/test_graph_utils/sanitizeGraph.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
lib ? import <nixpkgs/lib>,
...
}: let
{lib ? import <nixpkgs/lib>, ...}: let
util = import ../../../lib/internal/graphUtils.nix {inherit lib;};
in {
test_simple = {
Expand Down

0 comments on commit 9c1e567

Please sign in to comment.