[Dexter] Fix incorrect test expectations for floating point tests

A pair of tests had incorrect expectations set, one being an off-by-one
error and the other using decimal points in the expect that lldb omits.
This commit is contained in:
Stephen Tozer 2022-06-13 19:03:55 +01:00
parent 224094eb44
commit ec7c959671
2 changed files with 2 additions and 2 deletions

View File

@ -15,4 +15,4 @@ int main() {
return a; //DexLabel('check2') return a; //DexLabel('check2')
} }
// DexExpectWatchValue('a', '1.0', '100.0', from_line=ref('check1'), to_line=ref('check2'), float_range=0.5) // DexExpectWatchValue('a', '1.0', '101.0', from_line=ref('check1'), to_line=ref('check2'), float_range=0.5)

View File

@ -13,4 +13,4 @@ int main() {
return a; //DexLabel('check') return a; //DexLabel('check')
} }
// DexExpectWatchValue('a', '1.00000', on_line=ref('check')) // DexExpectWatchValue('a', '1', on_line=ref('check'))