Commit 9437e1c 1 parent e993d21 commit 9437e1c Copy full SHA for 9437e1c
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ fn test_sqlite_url(api: TestApi) {
192
192
assert ! ( !output. status. success( ) ) ;
193
193
let message = String :: from_utf8 ( output. stderr ) . unwrap ( ) ;
194
194
assert ! ( message. contains(
195
- "Prisma cannot determine the connector . Expecting postgres/postgresql/file/mysql/sqlserver/mongodb+srv/mongodb"
195
+ "The provided database string is invalid . Expecting schemes postgres/postgresql/file/mysql/sqlserver/mongodb+srv/mongodb in database URL. "
196
196
) ) ;
197
197
}
198
198
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ fn connector_for_connection_string(
90
90
Ok ( Box :: new ( connector) )
91
91
}
92
92
Some ( _other) => Err ( CoreError :: url_parse_error ( format ! (
93
- "Prisma cannot determine the connector. Expecting postgres/postgresql/file/mysql/sqlserver/mongodb+srv/mongodb"
93
+ "Expecting schemes postgres/postgresql/file/mysql/sqlserver/mongodb+srv/mongodb"
94
94
) ) ) ,
95
95
None => Err ( CoreError :: user_facing ( InvalidConnectionString {
96
96
details : String :: new ( ) ,
You can’t perform that action at this time.
0 commit comments