@@ -37,7 +37,7 @@ func TestAccFileSystem_Basic(t *testing.T) {
3737 Check : resource .ComposeTestCheckFunc (
3838 testAccCheckFileSystemExists (tt , "scaleway_file_filesystem.fs" ),
3939 resource .TestCheckResourceAttr ("scaleway_file_filesystem.fs" , "name" , fileSystemName ),
40- resource .TestCheckResourceAttr ("scaleway_file_filesystem.fs" , "size" , strconv .FormatInt (int64 ( size ) , 10 )),
40+ resource .TestCheckResourceAttr ("scaleway_file_filesystem.fs" , "size" , strconv .FormatInt (size , 10 )),
4141 ),
4242 },
4343 {
@@ -49,7 +49,7 @@ func TestAccFileSystem_Basic(t *testing.T) {
4949 ` , fileSystemNameUpdated , size ),
5050 Check : resource .ComposeTestCheckFunc (
5151 testAccCheckFileSystemExists (tt , "scaleway_file_filesystem.fs" ),
52- resource .TestCheckResourceAttr ("scaleway_file_filesystem.fs" , "size" , strconv .FormatInt (int64 ( size ) , 10 )),
52+ resource .TestCheckResourceAttr ("scaleway_file_filesystem.fs" , "size" , strconv .FormatInt (size , 10 )),
5353 ),
5454 },
5555 },
@@ -60,7 +60,7 @@ func TestAccFileSystem_SizeTooSmallFails(t *testing.T) {
6060 tt := acctest .NewTestTools (t )
6161 defer tt .Cleanup ()
6262
63- fileSystemName := "TestAccFileSystem_Basic "
63+ fileSystemName := "TestAccFileSystem_SizeTooSmallFails "
6464 size := int64 (10_000_000_000 )
6565
6666 resource .ParallelTest (t , resource.TestCase {
@@ -85,7 +85,7 @@ func TestAccFileSystem_InvalidSizeGranularityFails(t *testing.T) {
8585 tt := acctest .NewTestTools (t )
8686 defer tt .Cleanup ()
8787
88- fileSystemName := "TestAccFileSystem_Basic "
88+ fileSystemName := "TestAccFileSystem_InvalidSizeGranularityFails "
8989 size := int64 (25_000_000_000 )
9090
9191 resource .ParallelTest (t , resource.TestCase {
0 commit comments