diff --git a/internal/service/booking/service_test.go b/internal/service/booking/service_test.go index dbd2636..8a077c9 100644 --- a/internal/service/booking/service_test.go +++ b/internal/service/booking/service_test.go @@ -22,20 +22,20 @@ func TestService_All(t *testing.T) { { Id: 1, CustomerName: "John Doe", - From: time.Date(2024, 1, 1, 0, 0, 0, 0, time.UTC), - To: time.Date(2024, 1, 5, 0, 0, 0, 0, time.UTC), - Platform: "Airbnb", - Total: 500.0, - Canceled: false, + From: time.Date(2024, 1, 1, 0, 0, 0, 0, time.UTC), + To: time.Date(2024, 1, 5, 0, 0, 0, 0, time.UTC), + Platform: "Airbnb", + Total: 500.0, + Canceled: false, }, { Id: 2, CustomerName: "Jane Smith", - From: time.Date(2024, 2, 1, 0, 0, 0, 0, time.UTC), - To: time.Date(2024, 2, 3, 0, 0, 0, 0, time.UTC), - Platform: "Booking.com", - Total: 300.0, - Canceled: true, + From: time.Date(2024, 2, 1, 0, 0, 0, 0, time.UTC), + To: time.Date(2024, 2, 3, 0, 0, 0, 0, time.UTC), + Platform: "Booking.com", + Total: 300.0, + Canceled: true, }, }, }, @@ -70,20 +70,20 @@ func TestService_Search(t *testing.T) { { Id: 1, CustomerName: "John Doe", - From: time.Date(2024, 1, 1, 0, 0, 0, 0, time.UTC), - To: time.Date(2024, 1, 5, 0, 0, 0, 0, time.UTC), - Platform: "Airbnb", - Total: 500.0, - Canceled: false, + From: time.Date(2024, 1, 1, 0, 0, 0, 0, time.UTC), + To: time.Date(2024, 1, 5, 0, 0, 0, 0, time.UTC), + Platform: "Airbnb", + Total: 500.0, + Canceled: false, }, { Id: 2, CustomerName: "Jane Smith", - From: time.Date(2024, 2, 1, 0, 0, 0, 0, time.UTC), - To: time.Date(2024, 2, 3, 0, 0, 0, 0, time.UTC), - Platform: "Booking.com", - Total: 300.0, - Canceled: true, + From: time.Date(2024, 2, 1, 0, 0, 0, 0, time.UTC), + To: time.Date(2024, 2, 3, 0, 0, 0, 0, time.UTC), + Platform: "Booking.com", + Total: 300.0, + Canceled: true, }, }