Skip to content

Commit

Permalink
minor fixes to tests, fix typo in pr template
Browse files Browse the repository at this point in the history
  • Loading branch information
sreallymatt committed Feb 4, 2025
1 parent 39e8ab7 commit 5a8d83a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ For example: “`resource_name_here` - description of change e.g. adding propert
## Changes to existing Resource / Data Source

- [ ] I have added an explanation of what my changes do and why I'd like you to include them (This may be covered by linking to an issue above, but may benefit from additional explanation).
- [ ] I have written new tests for my resource or datasource changes & updated any relevent documentation.
- [ ] I have written new tests for my resource or datasource changes & updated any relevant documentation.
- [ ] I have successfully run tests with my changes locally. If not, please provide details on testing challenges that prevented you running the tests.
- [ ] (For changes that include a **state migration only**). I have manually tested the migration path between relevant versions of the provider.

Expand Down
4 changes: 2 additions & 2 deletions internal/services/mssql/mssql_job_step_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ resource "azurerm_mssql_job_step" "test" {
job_step_index = 1
sql_script = <<EOT
IF NOT EXISTS (SELECT * FROM sys.objects WHERE [name] = N'Pets')
IF NOT EXISTS (SELECT * FROM sys.objects WHERE [name] = N'Person')
CREATE TABLE Person (
FirstName NVARCHAR(50),
LastName NVARCHAR(50),
Expand All @@ -152,7 +152,7 @@ resource "azurerm_mssql_job_step" "import" {
job_step_index = 1
sql_script = <<EOT
IF NOT EXISTS (SELECT * FROM sys.objects WHERE [name] = N'Pets')
IF NOT EXISTS (SELECT * FROM sys.objects WHERE [name] = N'Person')
CREATE TABLE Person (
FirstName NVARCHAR(50),
LastName NVARCHAR(50),
Expand Down

0 comments on commit 5a8d83a

Please sign in to comment.