summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go b/vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go
index 8bf9f8a11..66ec106d5 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/search_queries_script_test.go
@@ -20,7 +20,7 @@ func TestScriptQuery(t *testing.T) {
t.Fatalf("marshaling to JSON failed: %v", err)
}
got := string(data)
- expected := `{"script":{"script":"doc['num1'.value \u003e 1"}}`
+ expected := `{"script":{"script":{"source":"doc['num1'.value \u003e 1"}}}`
if got != expected {
t.Errorf("expected\n%s\n,got:\n%s", expected, got)
}
@@ -38,7 +38,7 @@ func TestScriptQueryWithParams(t *testing.T) {
t.Fatalf("marshaling to JSON failed: %v", err)
}
got := string(data)
- expected := `{"script":{"_name":"MyQueryName","script":"doc['num1'.value \u003e 1"}}`
+ expected := `{"script":{"_name":"MyQueryName","script":{"source":"doc['num1'.value \u003e 1"}}}`
if got != expected {
t.Errorf("expected\n%s\n,got:\n%s", expected, got)
}