Fix spec case

This commit is contained in:
Jessica Lord 2016-06-09 16:26:25 -07:00
parent d6b108b272
commit d6d4d51173

View file

@ -6,7 +6,7 @@
<script> <script>
function testStorage (callback) { function testStorage (callback) {
chrome.storage.sync.set({foo: 'bar'}, function () { chrome.storage.sync.set({foo: 'bar'}, function () {
chrome.storage.sync.get([{foo: 'baz'}], callback) chrome.storage.sync.get({foo: 'baz'}, callback)
}) })
} }