Skip to content

Commit e7135f7

Browse files
authored
chore: fix mismatching tag in hydration test (#9888)
1 parent e585b0d commit e7135f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime-core/__tests__/hydration.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ describe('SSR hydration', () => {
14111411
h('svg', { class: 'foo bar' })
14121412
)
14131413
// class with different order
1414-
mountWithHydration(`<div class="foo bar"></svg>`, () =>
1414+
mountWithHydration(`<div class="foo bar"></div>`, () =>
14151415
h('div', { class: 'bar foo' })
14161416
)
14171417
expect(`Hydration class mismatch`).not.toHaveBeenWarned()

0 commit comments

Comments
 (0)