Skip to content

Commit

Permalink
remove * which is unsupported on sql server windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tmasternak authored and WilliamBZA committed Nov 4, 2024
1 parent 8da3dea commit 0d46a13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
echo "Create extra databases"
sqlcmd -Q "CREATE DATABASE nservicebus1"
sqlcmd -Q "CREATE DATABASE nservicebus2"
sqlcmd -Q "CREATE DATABASE [n service.bus&*#]"
sqlcmd -Q "CREATE DATABASE [n service.bus&#]"
echo "Create additional schemas"
sqlcmd -Q "CREATE SCHEMA receiver AUTHORIZATION db_owner" -d "nservicebus"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class When_catalog_with_special_characters_configured_for_endpoint : MultiCatalogAcceptanceTest
{
static string EndpointConnectionString => WithCustomCatalog(GetDefaultConnectionString(), "n service.bus&*#");
static string EndpointConnectionString => WithCustomCatalog(GetDefaultConnectionString(), "n service.bus&#");

[Test]
public async Task Should_be_able_to_send_messages_to_the_endpoint()
Expand Down

0 comments on commit 0d46a13

Please sign in to comment.