Skip to content

Commit 7a20e7b

Browse files
committed
fix linting issues
Signed-off-by: Prathap P <436prathap@gmail.com>
1 parent eac7fe0 commit 7a20e7b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

sdk/python/tests/unit/cli/test_cli_apply_duplicates.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,7 @@ def test_cli_apply_imported_featureview_with_duplication() -> None:
152152
rc, output = runner.run_with_output(["apply"], cwd=repo_path)
153153

154154
assert rc != 0
155-
assert (
156-
b"Multiple FeatureViews with name 'driver_hourly_stats' found." in output
157-
)
155+
assert b"Multiple FeatureViews with name 'driver_hourly_stats' found." in output
158156

159157

160158
def test_cli_apply_duplicated_featureview_names_multiple_py_files() -> None:
@@ -195,6 +193,5 @@ def test_cli_apply_duplicated_featureview_names_multiple_py_files() -> None:
195193

196194
assert (
197195
rc != 0
198-
and b"Feature view names must be case-insensitively unique"
199-
in output
196+
and b"Feature view names must be case-insensitively unique" in output
200197
)

0 commit comments

Comments
 (0)