|
177 | 177 | function suite.remove_onExactValueMatch() |
178 | 178 | local f = field.get("flags") |
179 | 179 |
|
180 | | - local r, err = configset.store(cset, f, { "MFC", "MultiProcessorCompile", "NoPCH" }) |
| 180 | + local r, err = configset.store(cset, f, { "WPF", "MultiProcessorCompile", "NoPCH" }) |
181 | 181 | test.isnil(err) |
182 | 182 |
|
183 | | - configset.remove(cset, f, { "MFC" }) |
| 183 | + configset.remove(cset, f, { "WPF" }) |
184 | 184 |
|
185 | 185 | local result = configset.fetch(cset, f) |
186 | 186 | test.isequal({ "MultiProcessorCompile", "NoPCH" }, result) |
|
190 | 190 | function suite.remove_onMultipleValues() |
191 | 191 | local f = field.get("flags") |
192 | 192 |
|
193 | | - local r, err = configset.store(cset, f, { "Maps", "MFC", "MultiProcessorCompile", "NoPCH" }) |
| 193 | + local r, err = configset.store(cset, f, { "Maps", "WPF", "MultiProcessorCompile", "NoPCH" }) |
194 | 194 | test.isnil(err) |
195 | 195 |
|
196 | | - configset.remove(cset, f, { "Maps", "MFC" }) |
| 196 | + configset.remove(cset, f, { "Maps", "WPF" }) |
197 | 197 |
|
198 | 198 | local result = configset.fetch(cset, f) |
199 | 199 | test.isequal({ "MultiProcessorCompile", "NoPCH" }, result) |
|
0 commit comments