fix(lib): swapped entries in test dag.sort.topological."sorts a graph"
Some checks failed
buildbot/nix-eval Build done.
Some checks failed
buildbot/nix-eval Build done.
This commit is contained in:
parent
cadfaabc85
commit
59040477bc
|
@ -149,7 +149,7 @@ in
|
|||
];
|
||||
actual = lib.dag.sort.topological {
|
||||
a = lib.dag.entry.anywhere "a";
|
||||
b = lib.dag.entry.between [ "c" ] [ "a" ] "b";
|
||||
b = lib.dag.entry.between [ "a" ] [ "c" ] "b";
|
||||
c = lib.dag.entry.before [ "c" ] "c";
|
||||
d = lib.dag.entry.after [ "c" ] "d";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue