Commit 45531d369363212555cfd7416cc8b1ee5ede5504

Michael Crumm 2021-08-23T18:48:10

Update version in test assertions

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/test/dart_sass_test.exs b/test/dart_sass_test.exs
index 200016a..c81f9ec 100644
--- a/test/dart_sass_test.exs
+++ b/test/dart_sass_test.exs
@@ -4,12 +4,12 @@ defmodule DartSassTest do
   test "run on default" do
     assert ExUnit.CaptureIO.capture_io(fn ->
              assert DartSass.run(:default, ["--version"]) == 0
-           end) =~ "1.36.0"
+           end) =~ "1.38.1"
   end
 
   test "run on profile" do
     assert ExUnit.CaptureIO.capture_io(fn ->
              assert DartSass.run(:another, []) == 0
-           end) =~ "1.36.0"
+           end) =~ "1.38.1"
   end
 end