File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -896,11 +896,10 @@ def _test_single_version_platform_override_from_env_minor_version(env):
896896 logger = repo_utils .logger (verbosity_level = 0 , name = "python" ),
897897 )
898898
899- env .expect .that_dict (py .config .default ["tool_versions" ]["3.13.6" ]).contains_exactly ({
900- "sha256" : {"aarch64-unknown-linux-gnu" : "deadbeef" },
901- "strip_prefix" : {"aarch64-unknown-linux-gnu" : "my-prefix" },
902- "url" : {"aarch64-unknown-linux-gnu" : ["example.com" , "example.org" ]},
903- })
899+ tool_versions = py .config .default ["tool_versions" ]["3.13.6" ]
900+ env .expect .that_str (tool_versions ["sha256" ]["aarch64-unknown-linux-gnu" ]).equals ("deadbeef" )
901+ env .expect .that_str (tool_versions ["strip_prefix" ]["aarch64-unknown-linux-gnu" ]).equals ("my-prefix" )
902+ env .expect .that_collection (tool_versions ["url" ]["aarch64-unknown-linux-gnu" ]).contains_exactly (["example.com" , "example.org" ])
904903
905904_tests .append (_test_single_version_platform_override_from_env_minor_version )
906905
You can’t perform that action at this time.
0 commit comments