We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58f924 commit 2c31e1aCopy full SHA for 2c31e1a
transpiler_test.go
@@ -408,7 +408,7 @@ func TestVersion(t *testing.T) {
408
version, err := godartsass.Version(getSassEmbeddedFilename())
409
c.Assert(err, qt.IsNil)
410
c.Assert(version, qt.Not(qt.Equals), "")
411
- c.Assert(version.ProtocolVersion, qt.Equals, "2.0.0")
+ c.Assert(strings.HasPrefix(version.ProtocolVersion, "2."), qt.IsTrue)
412
}
413
414
func newTestTranspiler(c *qt.C, opts godartsass.Options) (*godartsass.Transpiler, func()) {
0 commit comments