Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit eff69b6

Browse files
committedJun 13, 2022
Reset changes
1 parent 429a015 commit eff69b6

File tree

5 files changed

+3
-79
lines changed

5 files changed

+3
-79
lines changed
 

‎.github/workflows/deploy.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

‎.github/workflows/main.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

‎deploy/k8s/helm-simple/coupon/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ version: 0.1.0
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
21-
appVersion: 1.1.0
21+
appVersion: 1.0.0

‎src/Services/Coupon/Coupon.API/Controllers/CouponController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public async Task<ActionResult<CouponDto>> GetCouponByCodeAsync(string code)
5454

5555
var couponDto = _mapper.Translate(coupon);
5656

57-
_logger.LogInformation("Applying coupon {CouponCode}", code);
57+
// Add LogInformation call
5858

5959
return couponDto;
6060
}

‎tests/Services/Coupon/Coupon.API.Tests/Controllers/CouponControllerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class CouponControllerTests
77
[Fact]
88
public void Test1()
99
{
10-
Assert.True(true);
10+
Assert.True(false);
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)
Please sign in to comment.