Correct name of fixture file (#775)

The file previously named `values-binding-types_.js` is not intended to
be interpreted as a test. Therefor (in accordance with the project's
`INTERPETING.md` file), its name should include `_FIXTURE` as a suffix.
This commit is contained in:
jugglinmike 2016-10-14 14:04:47 -04:00 committed by Tom Care
parent 8c67edab05
commit b9d6fec9ac
2 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export var a_local1;
var local2; var local2;
export { local2 as b_renamed }; export { local2 as b_renamed };
export { a_local1 as e_indirect } from './values-binding-types.js'; export { a_local1 as e_indirect } from './values-binding-types.js';
export * from './values-binding-types_.js'; export * from './values-binding-types_FIXTURE.js';
var iter = ns[Symbol.iterator](); var iter = ns[Symbol.iterator]();
var result; var result;