Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RaynorChavez committed Feb 25, 2025
1 parent 924d347 commit 5839b6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/provider/indices_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ func TestAccResourceMaximalIndex(t *testing.T) {
resource.TestCheckResourceAttr("marqo_index.test", "settings.text_preprocessing.split_length", "3"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.text_preprocessing.split_method", "sentence"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.text_preprocessing.split_overlap", "1"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.image_preprocessing.patch_method", "grid"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.image_preprocessing.patch_method", "simple"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.video_preprocessing.split_length", "6"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.video_preprocessing.split_overlap", "2"),
resource.TestCheckResourceAttr("marqo_index.test", "settings.audio_preprocessing.split_length", "6"),
Expand Down Expand Up @@ -952,7 +952,7 @@ func testAccResourceMaximalIndexConfig(name string) string {
split_overlap = 1
}
image_preprocessing = {
patch_method = "grid"
patch_method = "simple"
}
video_preprocessing = {
split_length = 6
Expand Down Expand Up @@ -1015,7 +1015,7 @@ func testAccResourceMaximalIndexConfigUpdated(name string) string {
split_overlap = 1
}
image_preprocessing = {
patch_method = "grid"
patch_method = "simple"
}
video_preprocessing = {
split_length = 6
Expand Down

0 comments on commit 5839b6c

Please sign in to comment.