Fix another missing await

This commit is contained in:
Dave Bartolomeo
2024-01-22 13:08:39 -05:00
parent b6bf683852
commit 2cd1a99273

View File

@@ -1785,9 +1785,9 @@ export class CliVersionConstraint {
async preservesExtensiblePredicatesInMrvaPack() { async preservesExtensiblePredicatesInMrvaPack() {
// Negated, because we _stopped_ preserving these in 2.16.1. // Negated, because we _stopped_ preserving these in 2.16.1.
return !this.isVersionAtLeast( return !(await this.isVersionAtLeast(
CliVersionConstraint.CLI_VERSION_WITHOUT_MRVA_EXTENSIBLE_PREDICATE_HACK, CliVersionConstraint.CLI_VERSION_WITHOUT_MRVA_EXTENSIBLE_PREDICATE_HACK,
); ));
} }
async supportsMrvaPackCreate(): Promise<boolean> { async supportsMrvaPackCreate(): Promise<boolean> {