Commit dc85cd7
authored
Execution Tests: Fix bug parsing bools in TableParameterHandler (microsoft#7701)
This PR fixes a bug in the Exec tests utility TableParamaterHandler
which parses TAEF metadata which has either been populated via an xml
file or TAEF macros. There was a bug when parsing a TableParameter::BOOL
a string was being passed to TryGetValue instead of a bool.
The first argument to TryGetValue is the name of the parameter and the
second is a reference to the variable to store the value.
How tested: I'm adding a test that's using the handler to retrieve a
bool value. I confirmed that it's working now.1 parent efc9302 commit dc85cd7
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
| |||
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
182 | | - | |
183 | | - | |
| 182 | + | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
0 commit comments