File tree 1 file changed +3
-3
lines changed
operator/controller/src/test/java/io/apicurio/registry/operator/it
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import io .apicurio .registry .operator .api .v1 .ApicurioRegistry3 ;
4
4
import io .apicurio .registry .operator .api .v1 .spec .Sql ;
5
- import io .apicurio .registry .operator .api .v1 .spec .sql .Datasource ;
5
+ import io .apicurio .registry .operator .api .v1 .spec .sql .DataSource ;
6
6
import io .apicurio .registry .operator .resource .ResourceFactory ;
7
7
import io .quarkus .test .junit .QuarkusTest ;
8
8
import org .junit .jupiter .api .Test ;
@@ -39,8 +39,8 @@ void testErrorStatusIsTriggered() {
39
39
registry .getMetadata ().setNamespace (namespace );
40
40
// dummy settings to avoid reaching the READY state
41
41
var sql = new Sql ();
42
- var datasource = new Datasource ();
43
- sql .setDatasource (datasource );
42
+ var datasource = new DataSource ();
43
+ sql .setDataSource (datasource );
44
44
datasource .setUrl ("dummy" );
45
45
datasource .setUsername ("dummy" );
46
46
datasource .setPassword ("dummy" );
You can’t perform that action at this time.
0 commit comments