Skip to content

Commit c4e2ff9

Browse files
committed
provider/scaleway: Change bootscript datasource acceptance test
The tests were referencing an old bootscript - this just bumps the value to the latest. The list of bootscripts can be found at http://devhub.scaleway.com/#/bootscripts
1 parent 7f35b56 commit c4e2ff9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builtin/providers/scaleway/data_source_scaleway_bootscript_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestAccScalewayDataSourceBootscript_Basic(t *testing.T) {
2020
testAccCheckBootscriptID("data.scaleway_bootscript.debug"),
2121
resource.TestCheckResourceAttr("data.scaleway_bootscript.debug", "architecture", "x86_64"),
2222
resource.TestCheckResourceAttr("data.scaleway_bootscript.debug", "public", "true"),
23-
resource.TestMatchResourceAttr("data.scaleway_bootscript.debug", "kernel", regexp.MustCompile("4.5.7")),
23+
resource.TestMatchResourceAttr("data.scaleway_bootscript.debug", "kernel", regexp.MustCompile("4.8.3")),
2424
),
2525
},
2626
},
@@ -60,7 +60,7 @@ func testAccCheckBootscriptID(n string) resource.TestCheckFunc {
6060

6161
const testAccCheckScalewayBootscriptConfig = `
6262
data "scaleway_bootscript" "debug" {
63-
name = "x86_64 4.5.7 debug #3"
63+
name = "x86_64 4.8.3 debug #1"
6464
}
6565
`
6666

0 commit comments

Comments
 (0)