File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
CoinbasePro.Specs/Services/Payments
CoinbasePro/Services/Payments/Models Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class when_requesting_for_all_payment_methods
36
36
37
37
It should_have_correct_payment_methods = ( ) =>
38
38
{
39
- payment_methods . First ( ) . Id . ShouldEqual ( new Guid ( "bc6d7162-d984-5ffa-963c-a493b1c1370b" ) ) ;
39
+ payment_methods . First ( ) . Id . ShouldEqual ( "bc6d7162-d984-5ffa-963c-a493b1c1370b" ) ;
40
40
payment_methods . First ( ) . Name . ShouldEqual ( "Bank of America - eBan... ********7134" ) ;
41
41
payment_methods . First ( ) . Currency . ShouldEqual ( Currency . USD ) ;
42
42
payment_methods . First ( ) . AllowBuy . ShouldBeTrue ( ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace CoinbasePro.Services.Payments.Models
8
8
{
9
9
public class PaymentMethod
10
10
{
11
- public Guid Id { get ; set ; }
11
+ public string Id { get ; set ; }
12
12
13
13
[ JsonProperty ( "type" ) ]
14
14
public string PaymentMethodType { get ; set ; }
You can’t perform that action at this time.
0 commit comments