aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/autocomplete/remote_object_array_values.txt
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2014-01-22 10:40:19 -0500
committerScott González <scott.gonzalez@gmail.com>2014-01-22 10:40:19 -0500
commit113e9d0c2cc3f474da719721857c074c983c7157 (patch)
tree0dbae897accf436d7306d00188c23321a2375d0b /tests/unit/autocomplete/remote_object_array_values.txt
parent2ef1b16e4d3aa8766084e50f4a1d806c434e7e43 (diff)
downloadjquery-ui-113e9d0c2cc3f474da719721857c074c983c7157.tar.gz
jquery-ui-113e9d0c2cc3f474da719721857c074c983c7157.zip
Autocomplete: Normalize falsy values, not just missing values
Fixes #9762
Diffstat (limited to 'tests/unit/autocomplete/remote_object_array_values.txt')
-rw-r--r--tests/unit/autocomplete/remote_object_array_values.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/autocomplete/remote_object_array_values.txt b/tests/unit/autocomplete/remote_object_array_values.txt
index 029cbb9df..d55252b98 100644
--- a/tests/unit/autocomplete/remote_object_array_values.txt
+++ b/tests/unit/autocomplete/remote_object_array_values.txt
@@ -1 +1,5 @@
-[{"value":"java"},{"value":"javascript"}] \ No newline at end of file
+[
+ { "value": "java", "label": null },
+ { "value": "javascript", "label": "" },
+ { "value": "clojure" }
+]