Skip to content

Commit

Permalink
fix test cc number
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Jul 18, 2012
1 parent ed01a83 commit 4d3db09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/customers.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ vows.describe("Customer API").addBatch({
topic: function(create_err, customer) {
stripe.customers.update(customer.id, {
description: "test",
card: { number: "4111111111111111",
card: { number: "4242424242424242",
exp_month: 12,
exp_year: 2020,
name: "T. Ester"
Expand Down
2 changes: 1 addition & 1 deletion test/invoices.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ vows.describe("Invoice API").addBatch({
stripe.customers.create({
email: "[email protected]",
plan: plan.id,
card: { number: "4111111111111111",
card: { number: "4242424242424242",
exp_month: d.getMonth() + 1,
exp_year: d.getFullYear() + 1,
name: "T. Ester"
Expand Down
2 changes: 1 addition & 1 deletion test/tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ vows.describe("Tokens API").addBatch({
'Create token' : {
topic: function() {
stripe.token.create({
card: { number: "4111111111111111",
card: { number: "4242424242424242",
exp_month: 1,
exp_year: 2021,
name: "J. Ester"
Expand Down

0 comments on commit 4d3db09

Please sign in to comment.