diff --git a/backend/api/test_credit_trades.py b/backend/api/test_credit_trades.py index 00b88a81c..af4f7ffbd 100644 --- a/backend/api/test_credit_trades.py +++ b/backend/api/test_credit_trades.py @@ -144,7 +144,7 @@ def test_government_user_add_credit_transfer(self): # credit transfer with 0 fair market value: # If the type is 'Sell', Fair Market Value needs to be greater than 0 # or zero dollar reason must be provided - # This tests if we try to submit a 0 dollar credit transaction with no + # This tests if we try to submit a 0 dollar credit transaction with no # reason def test_government_user_add_credit_transfer(self): credit_trade_status, created = CreditTradeStatus.objects.get_or_create( diff --git a/backend/api/viewsets/Organization.py b/backend/api/viewsets/Organization.py index ad87b52fc..c29e174df 100644 --- a/backend/api/viewsets/Organization.py +++ b/backend/api/viewsets/Organization.py @@ -90,7 +90,5 @@ def fuel_suppliers(self, request): type=OrganizationType.objects.get(type="Part3FuelSupplier")) \ .order_by('lower_name') - print fuel_suppliers - serializer = self.get_serializer(fuel_suppliers, many=True) return Response(serializer.data)