Skip to content

Instantly share code, notes, and snippets.

@gphat
Created September 8, 2014 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gphat/6b7750e6316331ce9179 to your computer and use it in GitHub Desktop.
Save gphat/6b7750e6316331ce9179 to your computer and use it in GitHub Desktop.
418 EXPECTED:
419 {
420 "result" : [ {
421 "customer" : ["ted", "fred"],
422 "result" : 30
423 }, {
424 "customer" : ["barry"],
425 "result" : 23
426 }, {
427 "customer" : [],
428 "result" : 14
429 }, {
430 "customer" : null,
431 "result" : 17
432 } ]
433 }
434 ACTUAL:
435 {
436 "result" : [ {
437 "customer" : [ "barry" ],
438 "result" : 24
439 }, {
440 "customer" : [ "ted", "fred" ],
441 "result" : 43
442 }, {
443 "customer" : null,
444 "result" : 17
445 } ]
446 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment