From eef469a63fab175bb7f6aa47dc48b10fe9fac549 Mon Sep 17 00:00:00 2001 From: Drew Sirenko <68304519+AndrewSirenko@users.noreply.github.com> Date: Wed, 10 Jan 2024 14:04:42 -0500 Subject: [PATCH] Add ext3 and xfs fsTypes to e2e format-option test coverage --- tests/e2e/format_options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/format_options.go b/tests/e2e/format_options.go index 4ae170d961..440cac8b04 100644 --- a/tests/e2e/format_options.go +++ b/tests/e2e/format_options.go @@ -27,7 +27,7 @@ import ( ) var ( - testedFsTypes = []string{ebscsidriver.FSTypeExt4} + testedFsTypes = []string{ebscsidriver.FSTypeExt4, ebscsidriver.FSTypeExt3, ebscsidriver.FSTypeXfs} ) var _ = Describe("[ebs-csi-e2e] [single-az] [format-options] Formatting a volume", func() {