Skip to content

Commit

Permalink
Added fix to test to ensure compatibility with scssphp 1.10.x (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxwilko committed Jan 26, 2022
1 parent f5b7bed commit d64ec62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Assetic/Test/Filter/ScssphpFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function testSetVariables()
$this->assertStringContainsString('color: red', $asset->getContent(), 'Variables can be added');
$this->assertStringContainsString('line-height: 1.4', $asset->getContent(), 'Variables can be added');
$this->assertStringContainsString('border: 1px solid red', $asset->getContent(), 'Variables can be added');
$this->assertStringContainsString('content: \'extra content\'', $asset->getContent(), 'Variables can be added');
$this->assertStringContainsString('content: "extra content"', $asset->getContent(), 'Variables can be added');
}

// private
Expand Down

0 comments on commit d64ec62

Please sign in to comment.