From e4f8a4323250ffd51914f341386a1acbd0645122 Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Tue, 8 Aug 2023 11:15:00 -0600 Subject: [PATCH] - Remove scratch code --- EasyPost.Integration/Basics.cs | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/EasyPost.Integration/Basics.cs b/EasyPost.Integration/Basics.cs index 5487b8032..4cb69383a 100644 --- a/EasyPost.Integration/Basics.cs +++ b/EasyPost.Integration/Basics.cs @@ -1,6 +1,5 @@ using EasyPost.Integration.Utilities.Attributes; using EasyPost.Models.API; -using EasyPost.Parameters.Order; using Xunit; namespace EasyPost.Integration; @@ -164,26 +163,4 @@ public void UserCanCreateHooks() // Cannot edit hooks via a constructed client } - - [Fact] - public async Task Scratch() - { - var client = new EasyPost.Client(new ClientConfiguration("not-a-real-api-key")); - - var order = await client.Order.Create( - new EasyPost.Parameters.Order.Create - { - CarrierAccounts = new List - { - new CarrierAccount - { - Id = "ca_1", - }, - new CarrierAccount - { - Id = "ca_2", - }, - }, - }); - } }