Skip to content

Commit 76bb0df

Browse files
committed
Fix wrong output in test configuration
1 parent 72ee87f commit 76bb0df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static function printConfiguration(): void
7070
$configuration = [
7171
'%uri%' => $uri,
7272
'%database%' => static::getDatabaseName(),
73-
'%apiVersion%' => getenv('MONGODB_API_VERSION') ?: 'Not configured',
73+
'%apiVersion%' => getenv('API_VERSION') ?: 'Not configured',
7474
'%cryptSharedAvailable%' => FunctionalTestCase::isCryptSharedLibAvailable() ? 'Available' : 'Not available',
7575
'%mongocryptdAvailable%' => FunctionalTestCase::isMongocryptdAvailable() ? 'Available' : 'Not available',
7676
];

0 commit comments

Comments
 (0)