Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-yechenwei committed Jun 28, 2022
1 parent f5c7cbd commit 18d989a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestAccDataSourceLogAnalyticsWorkspace_basic(t *testing.T) {
{
Config: r.basicWithDataSource(data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("sku").HasValue("pergb2018"),
check.That(data.ResourceName).Key("sku").HasValue("PerGB2018"),
check.That(data.ResourceName).Key("retention_in_days").HasValue("30"),
check.That(data.ResourceName).Key("daily_quota_gb").HasValue("-1"),
),
Expand All @@ -35,7 +35,7 @@ func TestAccDataSourceLogAnalyticsWorkspace_volumeCapWithDataSource(t *testing.T
{
Config: r.volumeCapWithDataSource(data, 4.5),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).Key("sku").HasValue("pergb2018"),
check.That(data.ResourceName).Key("sku").HasValue("PerGB2018"),
check.That(data.ResourceName).Key("retention_in_days").HasValue("30"),
check.That(data.ResourceName).Key("daily_quota_gb").HasValue("4.5"),
),
Expand Down

0 comments on commit 18d989a

Please sign in to comment.