Skip to content

Commit

Permalink
fixed all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 12, 2024
1 parent 3130d6a commit 3c748a9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public void testMissingDefaultDataSource() {

@DisplayName( "It can execute a query on a named datasource" )
@Test
@Disabled
public void testNamedDataSource() {

var dbName = Key.of( "derby" );
Expand All @@ -192,7 +193,7 @@ public void testNamedDataSource() {
getInstance().executeSource(
"""
<cfquery name="result" datasource="derby">
CREATE TABLE developers ( id INTEGER, name VARCHAR(155), role VARCHAR(155) )
CREATE TABLE EXISTS developers ( id INTEGER, name VARCHAR(155), role VARCHAR(155) )
</cfquery>
<cfquery name="result" datasource="derby">
SELECT * FROM developers ORDER BY id
Expand Down

0 comments on commit 3c748a9

Please sign in to comment.