Skip to content

Commit 1f38d39

Browse files
committed
fix(logging[test]): update stale assertion in skipped test
why: The assertion checked for "Loading" or "Loaded" but the restored user-facing message now uses "[Loading]" format. what: - Update assertion to match the restored [Loading] message format
1 parent df72c84 commit 1f38d39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/cli/test_load.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def test_load_plugins_version_fail_skip(
582582

583583
result = capsys.readouterr()
584584

585-
assert "Loading" in result.out or "Loaded" in result.out
585+
assert "[Loading]" in result.out
586586

587587

588588
PLUGIN_VERSION_NO_SKIP_TEST_FIXTURES: list[PluginVersionTestFixture] = [

0 commit comments

Comments
 (0)