Skip to content

Commit

Permalink
Changing for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryKleinjanCACI committed May 10, 2024
1 parent dde0bd1 commit 05c0304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -923,5 +923,5 @@
20240411201158_add_application_parameter_and_validation_code_table.up.sql
20240416145256_update_safety_privilege_label.up.sql
20240502183613_add_support_for_standalone_payment_cap.up.sql
20240509135447_remove_not_null_from_application_params_columns.up.sql
20240503123556_add_diversion_reason_to_mto_shipments.up.sql
20240509135447_remove_not_null_from_application_params_columns.up.sql
2 changes: 1 addition & 1 deletion pkg/models/application_parameters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (suite *ModelSuite) Test_FetchParameterValue() {

// if the value is not found, it should return an empty string
wrongValue := "Testcode123456"
var nilString *string = nil
var nilString *string
shouldNotHaveValue, err := models.FetchParameterValue(suite.DB(), param, wrongValue)
suite.NoError(err)
suite.Equal(nilString, shouldNotHaveValue.ParameterValue)
Expand Down

0 comments on commit 05c0304

Please sign in to comment.