From 67ea889ce1838acf5c964e4c275faf0fa8030e0d Mon Sep 17 00:00:00 2001 From: memsharded Date: Tue, 14 Jan 2025 23:05:29 +0100 Subject: [PATCH] fix tests --- conan/cli/commands/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conan/cli/commands/graph.py b/conan/cli/commands/graph.py index 81fb4fbbfb4..a5c1c9396c2 100644 --- a/conan/cli/commands/graph.py +++ b/conan/cli/commands/graph.py @@ -302,7 +302,7 @@ def graph_explain(conan_api, parser, subparser, *args): ConanOutput().title("Retrieving and computing closest binaries") # compute ref and conaninfo of the first missing binary - ref, conaninfo = conan_api.graph.first_missing_binary(deps_graph, args.missing) + ref, conaninfo = conan_api.graph.find_first_missing_binary(deps_graph, args.missing) pkglist = conan_api.list.explain_missing_binaries(ref, conaninfo, remotes) ConanOutput().title("Closest binaries")