-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pluginsdk shims, convert data.azuread_client_config to typed data…
…source
- Loading branch information
1 parent
2f4a871
commit 2eac106
Showing
154 changed files
with
3,332 additions
and
3,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
internal/tf/acctest_test.go → internal/acceptance/random_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package tf | ||
package acceptance | ||
|
||
import "testing" | ||
|
||
func TestAccRandTimeInt(t *testing.T) { | ||
t.Run("Rand Date int", func(t *testing.T) { | ||
ri := AccRandTimeInt() | ||
ri := RandTimeInt() | ||
|
||
if ri < 100000000000000000 { | ||
t.Fatalf("AccRandTimeInt returned a value (%d) shorter then expected", ri) | ||
t.Fatalf("RandTimeInt returned a value (%d) shorter then expected", ri) | ||
} | ||
|
||
if ri > 999999999999999999 { | ||
t.Fatalf("AccRandTimeInt returned a value (%d) longer then expected", ri) | ||
t.Fatalf("RandTimeInt returned a value (%d) longer then expected", ri) | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.