Ayaz's fix and first passing inspect test

This commit is contained in:
Brendan Hansknecht 2023-11-27 22:15:09 -08:00
parent f0dee1f6e9
commit 3434d3154a
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
2 changed files with 3 additions and 6 deletions

View file

@ -1504,10 +1504,7 @@ impl AbilityResolver for AbilitiesStore {
/// because they do not explicitly list ability implementations due to circular dependencies.
#[inline]
pub(crate) fn builtin_module_with_unlisted_ability_impl(module_id: ModuleId) -> bool {
matches!(
module_id,
ModuleId::NUM | ModuleId::BOOL | ModuleId::INSPECT
)
matches!(module_id, ModuleId::NUM | ModuleId::BOOL)
}
#[derive(Debug)]