-
Notifications
You must be signed in to change notification settings - Fork 30
Closed
Labels
Description
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
toa > 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.
Metadata
Metadata
Labels
Type
Projects
Status
Done