diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-19 09:32:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 10:32:21 -0400 |
commit | 1464b756a4ef091ef97d1bf7340188ab5fe5492a (patch) | |
tree | 2eff346ccf5782c501460aec63a5028742066fa6 /cli/tools | |
parent | 8d50c09c0db4e9b0644263cde3f7ff990ec75259 (diff) |
refactor: move out test files from root testdata directory into sub directories (#15949)
Diffstat (limited to 'cli/tools')
-rw-r--r-- | cli/tools/fmt.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tools/fmt.rs b/cli/tools/fmt.rs index 584be9e6b..f2af48f26 100644 --- a/cli/tools/fmt.rs +++ b/cli/tools/fmt.rs @@ -757,8 +757,8 @@ mod test { assert!(is_supported_ext_fmt(Path::new("readme.mdown"))); assert!(is_supported_ext_fmt(Path::new("readme.markdown"))); assert!(is_supported_ext_fmt(Path::new("lib/typescript.d.ts"))); - assert!(is_supported_ext_fmt(Path::new("testdata/001_hello.js"))); - assert!(is_supported_ext_fmt(Path::new("testdata/002_hello.ts"))); + assert!(is_supported_ext_fmt(Path::new("testdata/run/001_hello.js"))); + assert!(is_supported_ext_fmt(Path::new("testdata/run/002_hello.ts"))); assert!(is_supported_ext_fmt(Path::new("foo.jsx"))); assert!(is_supported_ext_fmt(Path::new("foo.tsx"))); assert!(is_supported_ext_fmt(Path::new("foo.TS"))); |