From 44a957a46ab23c55a8177130329cfdfda8312f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=B2=B2=E8=BE=89?= Date: Sat, 1 Jul 2023 23:53:32 +0800 Subject: [PATCH] =?UTF-8?q?fix=20bug=20for=20"=E6=BB=9A=E5=8A=A8=E7=B1=BB?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=94=AF=E6=8C=81=E9=85=8D=E7=BD=AEfling?= =?UTF-8?q?=E6=95=88=E6=9E=9C=E7=9A=84=E5=8F=82=E6=95=B0"XTS=E7=94=A8?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李鲲辉 --- .../ets/test/Grid/Grid_attribute/Grid_GridFriction.test.ets | 2 +- arkui/ace_ets_layout_test/entry/src/main/ets/test/List.test.ets | 2 +- .../test/Scroll/Scroll_attribute/Scroll_ScrollFriction.test.ets | 2 +- .../WaterFlow_attribute/WaterFlow_WaterFlowFriction.test.ets | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arkui/ace_ets_layout_test/entry/src/main/ets/test/Grid/Grid_attribute/Grid_GridFriction.test.ets b/arkui/ace_ets_layout_test/entry/src/main/ets/test/Grid/Grid_attribute/Grid_GridFriction.test.ets index 3f2e211bb..13de492f3 100644 --- a/arkui/ace_ets_layout_test/entry/src/main/ets/test/Grid/Grid_attribute/Grid_GridFriction.test.ets +++ b/arkui/ace_ets_layout_test/entry/src/main/ets/test/Grid/Grid_attribute/Grid_GridFriction.test.ets @@ -17,7 +17,7 @@ import router from '@ohos.router'; import CommonFunc from '../../../MainAbility/common/Common'; import { UiComponent, UiDriver, Component, Driver, UiWindow, ON, BY, MatchPattern, DisplayRotation, ResizeDirection, WindowMode, PointerMatrix, UiDirection, MouseButton } from '@ohos.UiTest'; -export default function Grid_GridFrictionTest() { +export default function grid_GridFrictionTest() { describe('Grid_GridFrictionTest', function () { beforeEach(async function (done) { console.info("Grid_GridFrictionTest beforeEach start"); diff --git a/arkui/ace_ets_layout_test/entry/src/main/ets/test/List.test.ets b/arkui/ace_ets_layout_test/entry/src/main/ets/test/List.test.ets index df4897485..7749a04ac 100644 --- a/arkui/ace_ets_layout_test/entry/src/main/ets/test/List.test.ets +++ b/arkui/ace_ets_layout_test/entry/src/main/ets/test/List.test.ets @@ -369,7 +369,7 @@ import Row_Size from './Row/parentComponentChanged/Row_Size.test'; import Row_VerticalAlign from './Row/parentComponentChanged/Row_VerticalAlign.test'; import list_ListFrictionTest from './List/List_attribute/List_ListFriction.test'; import grid_GridFrictionTest from './Grid/Grid_attribute/Grid_GridFriction.test'; -import waterflow_WaterFlowFrictionTest from './WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test'; +import waterFlow_WaterFlowFrictionTest from './WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test'; import scroll_ScrollFrictionTest from './Scroll/Scroll_attribute/Scroll_ScrollFriction.test'; import AlignContentFlex_Start from './Flex/alignContent/Start/AlignContentFlex_Start.test.ets'; diff --git a/arkui/ace_ets_layout_test/entry/src/main/ets/test/Scroll/Scroll_attribute/Scroll_ScrollFriction.test.ets b/arkui/ace_ets_layout_test/entry/src/main/ets/test/Scroll/Scroll_attribute/Scroll_ScrollFriction.test.ets index 54799acd7..075780d61 100644 --- a/arkui/ace_ets_layout_test/entry/src/main/ets/test/Scroll/Scroll_attribute/Scroll_ScrollFriction.test.ets +++ b/arkui/ace_ets_layout_test/entry/src/main/ets/test/Scroll/Scroll_attribute/Scroll_ScrollFriction.test.ets @@ -17,7 +17,7 @@ import router from '@ohos.router'; import CommonFunc from '../../../MainAbility/common/Common'; import { UiComponent, UiDriver, Component, Driver, UiWindow, ON, BY, MatchPattern, DisplayRotation, ResizeDirection, WindowMode, PointerMatrix, UiDirection, MouseButton } from '@ohos.UiTest'; -export default function Scroll_ScrollFrictionTest() { +export default function scroll_ScrollFrictionTest() { describe('Scroll_ScrollFrictionTest', function () { beforeEach(async function (done) { console.info("Scroll_ScrollFrictionTest beforeEach start"); diff --git a/arkui/ace_ets_layout_test/entry/src/main/ets/test/WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test.ets b/arkui/ace_ets_layout_test/entry/src/main/ets/test/WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test.ets index 5cb9580d4..466e33e11 100644 --- a/arkui/ace_ets_layout_test/entry/src/main/ets/test/WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test.ets +++ b/arkui/ace_ets_layout_test/entry/src/main/ets/test/WaterFlow/WaterFlow_attribute/WaterFlow_WaterFlowFriction.test.ets @@ -17,7 +17,7 @@ import router from '@ohos.router'; import CommonFunc from '../../../MainAbility/common/Common'; import { UiComponent, UiDriver, Component, Driver, UiWindow, ON, BY, MatchPattern, DisplayRotation, ResizeDirection, WindowMode, PointerMatrix, UiDirection, MouseButton } from '@ohos.UiTest'; -export default function WaterFlow_WaterFlowFrictionTest() { +export default function waterFlow_WaterFlowFrictionTest() { describe('WaterFlow_WaterFlowFrictionTest', function () { beforeEach(async function (done) { console.info("WaterFlow_WaterFlowFrictionTest beforeEach start"); -- GitLab