diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-12-04 10:14:32 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-12-04 10:14:32 +0100 |
commit | a3ad4472de9096ec0a12d15097048578b3514d4b (patch) | |
tree | 6779f35ddd2672a2b82e7817b15d29a3903e5801 /PollutometerWebApi.Tests/Test.cs | |
parent | 644d63b7073f59290029bf084fb57db5a501309d (diff) |
Improved calculating of AQI and sending e-mail.
Diffstat (limited to 'PollutometerWebApi.Tests/Test.cs')
-rw-r--r-- | PollutometerWebApi.Tests/Test.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PollutometerWebApi.Tests/Test.cs b/PollutometerWebApi.Tests/Test.cs index 254f0bc..cc17234 100644 --- a/PollutometerWebApi.Tests/Test.cs +++ b/PollutometerWebApi.Tests/Test.cs @@ -8,7 +8,7 @@ namespace PollutometerWebApi.Tests [Test()] public void TestCase() { - EmailService.Start(); + var result = AqiCalculator.CalculateAqi(new Models.Reading() {Co = 30.4, No = 1.0, So = 0.4}); } } } |