Skip to content

Commit

Permalink
Upgrade to v3 of the protocol
Browse files Browse the repository at this point in the history
Closes #28
  • Loading branch information
bep committed Nov 1, 2024
1 parent dae5fd2 commit ffaf1fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
name: Test
env:
SASS_VERSION: 1.63.2
SASS_VERSION: 1.80.5
jobs:
test:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion transpiler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ func TestVersion(t *testing.T) {
version, err := godartsass.Version(getSassEmbeddedFilename())
c.Assert(err, qt.IsNil)
c.Assert(version, qt.Not(qt.Equals), "")
c.Assert(strings.HasPrefix(version.ProtocolVersion, "2."), qt.IsTrue)
c.Assert(strings.HasPrefix(version.ProtocolVersion, "3."), qt.IsTrue, qt.Commentf("got: %q", version.ProtocolVersion))
}

func newTestTranspiler(c *qt.C, opts godartsass.Options) (*godartsass.Transpiler, func()) {
Expand Down

0 comments on commit ffaf1fa

Please sign in to comment.