Skip to content

Commit

Permalink
Merge pull request mun-lang#234 from baszalmstra/fix/bump_insta
Browse files Browse the repository at this point in the history
bump: insta to 0.16
  • Loading branch information
baszalmstra authored Jun 21, 2020
2 parents edcacbb + 55003be commit b738800
Show file tree
Hide file tree
Showing 191 changed files with 9 additions and 177 deletions.
2 changes: 1 addition & 1 deletion crates/mun_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rev = "4448bcd"
features = ["llvm7-0"]

[dev-dependencies]
insta = "0.12.0"
insta = "0.16"

[build-dependencies]
semver = "0.9.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: crates/mun_codegen/src/test.rs
expression: "fn main() {\n}"
expression: "pub fn main() {\n}"
---
; == FILE IR =====================================
; ModuleID = 'main.mun'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: crates/mun_codegen/src/test.rs
expression: "fn main() {\n let a = 3+3.0;\n let b = 3.0+3;\n}"
expression: "pub fn main() {\n let a = 3+3.0;\n let b = 3.0+3;\n}"
---
; == FILE IR =====================================
error 2:13: mismatched type
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: crates/mun_codegen/src/test.rs
expression: "fn foo() {\n loop {}\n}"
expression: "pub fn foo() {\n loop {}\n}"
---
; == FILE IR =====================================
; ModuleID = 'main.mun'
Expand Down
41 changes: 0 additions & 41 deletions crates/mun_codegen/src/snapshots/test__assign_bit_op_int.snap

This file was deleted.

127 changes: 0 additions & 127 deletions crates/mun_codegen/src/snapshots/test__primitive_types.snap

This file was deleted.

2 changes: 1 addition & 1 deletion crates/mun_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ unicode-segmentation = "1.6.0"
ansi_term = "0.12.1"

[dev-dependencies]
insta = "0.13.1"
insta = "0.16"
2 changes: 1 addition & 1 deletion crates/mun_hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ drop_bomb = "0.1.4"
either = "1.5.3"

[dev-dependencies]
insta = "0.12.0"
insta = "0.16"
parking_lot = "0.10"
2 changes: 1 addition & 1 deletion crates/mun_syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ unicode-xid = "0.1.0"
drop_bomb = "0.1.4"

[dev-dependencies]
insta = "0.12.0"
insta = "0.16"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
source: crates/mun_syntax/src/tests/parser.rs
expression: file.debug_dump()
expression: ""
---
SOURCE_FILE@[0; 0)

2 changes: 1 addition & 1 deletion crates/mun_target/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ log = "0.4.8"
thiserror = "1.0.19"

[dev-dependencies]
insta="0.16"
insta = "0.16"

0 comments on commit b738800

Please sign in to comment.