Version: 2022.8.233
Description
If user generates tests, runs them and updates code then next running still uses 'old' code.
To Reproduce
Steps to reproduce the behavior:
- Write a function like that
short min_short(short a, short b) {
if (a < b) {
return a;
}
return b;
}
- Generate tests for the file
- Run tests with coverage - both passed
- Update condition from
a < b to a > b and save the file
- Run generated tests again - both test passed again. Expected that one test fails.
I've checked that code is actually updated on the remote server.
It doesn't happen if user skips step 3 and run only modified code.
Version: 2022.8.233
Description
If user generates tests, runs them and updates code then next running still uses 'old' code.
To Reproduce
Steps to reproduce the behavior:
a < btoa > band save the fileI've checked that code is actually updated on the remote server.
It doesn't happen if user skips step 3 and run only modified code.