Skip to content

Commit

Permalink
Fix 'TestAccStorageGatewayLocalDiskDataSource_diskNode' and 'TestAccS…
Browse files Browse the repository at this point in the history
…torageGatewayLocalDiskDataSource_diskPath'.
  • Loading branch information
ewbankkit committed Jul 31, 2024
1 parent dafc14b commit ce32cd7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestAccStorageGatewayLocalDiskDataSource_diskNode(t *testing.T) {
Steps: []resource.TestStep{
{
Config: testAccLocalDiskDataSourceConfig_nodeNonExistent(rName),
ExpectError: regexache.MustCompile(`no results found`),
ExpectError: regexache.MustCompile(`no matching Storage Gateway Local Disk found`),
},
{
Config: testAccLocalDiskDataSourceConfig_node(rName),
Expand All @@ -52,7 +52,7 @@ func TestAccStorageGatewayLocalDiskDataSource_diskPath(t *testing.T) {
Steps: []resource.TestStep{
{
Config: testAccLocalDiskDataSourceConfig_pathNonExistent(rName),
ExpectError: regexache.MustCompile(`no results found`),
ExpectError: regexache.MustCompile(`no matching Storage Gateway Local Disk found`),
},
{
Config: testAccLocalDiskDataSourceConfig_path(rName),
Expand Down

0 comments on commit ce32cd7

Please sign in to comment.