Skip to content

Commit bb7a5f9

Browse files
authored
wip
1 parent 3924ff9 commit bb7a5f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/SushiTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ function model_with_custom_schema()
7272
ModelWithCustomSchema::count();
7373
$connectionBuilder = ModelWithCustomSchema::resolveConnection()->getSchemaBuilder();
7474
$this->assertEquals(
75-
function_exists(laravel_version_compare::class) && laravel_version_compare('11.0.0', '>=') ? 'varchar' : 'string',
75+
function_exists('\Orchestra\Testbench\laravel_version_compare') && laravel_version_compare('11.0.0', '>=') ? 'varchar' : 'string',
7676
$connectionBuilder->getColumnType('model_with_custom_schemas', 'float')
7777
);
7878
$this->assertEquals(
79-
function_exists(laravel_version_compare::class) && laravel_version_compare('11.0.0', '>=') ? 'varchar' : 'string',
79+
function_exists('\Orchestra\Testbench\laravel_version_compare') && laravel_version_compare('11.0.0', '>=') ? 'varchar' : 'string',
8080
$connectionBuilder->getColumnType('model_with_custom_schemas', 'string')
8181
);
8282
}

0 commit comments

Comments
 (0)