From 33da99cf219f12e8cc78c8295b6f26ade7ff883b Mon Sep 17 00:00:00 2001 From: tjz <415800467@qq.com> Date: Sun, 17 Jun 2018 18:00:43 +0800 Subject: [PATCH] test: update `radio` & `group` path --- components/radio/__tests__/group.test.js | 4 ++-- components/radio/__tests__/radio.test.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/radio/__tests__/group.test.js b/components/radio/__tests__/group.test.js index f072321d0..3c2108147 100644 --- a/components/radio/__tests__/group.test.js +++ b/components/radio/__tests__/group.test.js @@ -1,7 +1,7 @@ import { mount } from '@vue/test-utils' import { asyncExpect } from '@/tests/utils' -import Radio from '../radio' -import RadioGroup from '../group' +import Radio from '../Radio' +import RadioGroup from '../Group' describe('Radio', () => { function createRadioGroup (props, listeners = {}) { diff --git a/components/radio/__tests__/radio.test.js b/components/radio/__tests__/radio.test.js index 882540a00..98178c079 100644 --- a/components/radio/__tests__/radio.test.js +++ b/components/radio/__tests__/radio.test.js @@ -1,6 +1,6 @@ import { mount } from '@vue/test-utils' import { asyncExpect } from '@/tests/utils' -import Radio from '../radio' +import Radio from '../Radio' import focusTest from '../../../tests/shared/focusTest' describe('Radio', () => {