Skip to content

Commit 2cd3bc1

Browse files
authored
fix calls test (#362)
1 parent a34b159 commit 2cd3bc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/calls/Calls.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getWrapper } from '../shared';
22
import NavigationBar from '../../src/components/NavigationBar';
3-
import CallsPanel from '../../src/components/CallsPanel';
3+
import ActiveCallsPanel from '../../src/components/ActiveCallsPanel';
44

55
let wrapper = null;
66
let panel = null;
@@ -9,7 +9,7 @@ beforeEach(async () => {
99
wrapper = await getWrapper();
1010
const navigationBar = wrapper.find(NavigationBar).first();
1111
await navigationBar.props().goTo('/calls');
12-
panel = wrapper.find(CallsPanel).first();
12+
panel = wrapper.find(ActiveCallsPanel).first();
1313
});
1414

1515
describe('history', () => {

0 commit comments

Comments
 (0)