We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b653b34 commit dd69913Copy full SHA for dd69913
internal/services/baremetal/easy_partitioning_source_test.go
@@ -25,7 +25,7 @@ func TestAccDataSourceEasyParitioning_Basic(t *testing.T) {
25
{
26
Config: fmt.Sprintf(
27
`
28
-data "scaleway_easy_partitioning" "test" {
+data "scaleway_baremetal_easy_partitioning" "test" {
29
offer_id = "%s"
30
os_id = "%s"
31
}
internal/services/baremetal/helpers.go
@@ -228,9 +228,9 @@ func privateNetworkSetHash(v interface{}) int {
228
func isOSCompatible(offer *baremetal.Offer, os *baremetal.OS) bool {
229
for _, incompatible := range offer.IncompatibleOsIDs {
230
if os.ID == incompatible {
231
- return true
+ return false
232
233
234
235
- return false
+ return true
236
0 commit comments