Skip to content

Commit

Permalink
Update snapshots for nested list fix
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object committed Jun 8, 2024
1 parent 9109962 commit ae03eb4
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 53 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_build(session: nox.Session):


@nox.session(tags=["test", "post_build"])
@nox.parametrize(["branch"], ["1.19", "main"])
@nox.parametrize(["branch"], ["1.19_old", "main_old"])
def test_hexcasting(session: nox.Session, branch: str):
with session.cd("submodules/HexMod"):
original_branch = run_silent_external(
Expand Down
2 changes: 1 addition & 1 deletion submodules/HexMod
Submodule HexMod updated 1 files
+3 −0 doc/hexdoc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,15 @@ p {
}
p.fake-li {
margin: 0;
--level: 1;
}
p.fake-li::before {
content: "\2022";
margin: 1ex;
margin-left: calc(1ex + (var(--level) - 1) * 2ex);
}
p.fake-li-alt::before {
content: "\25E6";
}
.linkout::before {
content: "Link: ";
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,15 @@ p {
}
p.fake-li {
margin: 0;
--level: 1;
}
p.fake-li::before {
content: "\2022";
margin: 1ex;
margin-left: calc(1ex + (var(--level) - 1) * 2ex);
}
p.fake-li-alt::before {
content: "\25E6";
}
.linkout::before {
content: "Link: ";
Expand Down

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion test/integration/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def branch() -> str:
check=True,
)

assert (branch := result.stdout.strip())
# FIXME: removesuffix is only necessary for pre-new-textures tests
assert (branch := result.stdout.strip().removesuffix("_old"))
return branch


Expand Down

0 comments on commit ae03eb4

Please sign in to comment.