acoburn opened a new pull request #33: TAMAYA-291: Increase code coverage for 
etcd module
URL: https://github.com/apache/incubator-tamaya-extensions/pull/33
 
 
   This increases the code coverage for the etcd module, allowing us to remove 
the PIT test threshold exception for this module.
   
   N.B. the reason the coverage threshold changed had to do with the change in 
line numbers from the earlier commit, i.e.:
   
   ```java
   if(x == true) return;
   ```
   
   became
   
   ```java
   if (x == true) {
       return;
   }
   ```
   
   And the increase in line numbers dropped the coverage statistics.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to