Skip to content

Commit

Permalink
Fix broken tests (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
timsueberkrueb authored Jan 16, 2025
1 parent ab3533a commit 6a36511
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lang/elaborator/src/conversion_checking/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ mod test {
};
let ctx = vec![vec![
Binder {
name: VarBind { span: None, id: "a".to_string() },
name: VarBind::Var { span: None, id: "a".to_string() },
typ: Box::new(TypeUniv { span: None }.into()),
},
Binder {
name: VarBind { span: None, id: "v".to_string() },
name: VarBind::Var { span: None, id: "v".to_string() },
typ: Box::new(
Variable {
span: None,
Expand Down Expand Up @@ -162,11 +162,11 @@ mod test {

let ctx = vec![vec![
Binder {
name: VarBind { span: None, id: "a".to_string() },
name: VarBind::Var { span: None, id: "a".to_string() },
typ: Box::new(TypeUniv { span: None }.into()),
},
Binder {
name: VarBind { span: None, id: "v'".to_string() },
name: VarBind::Var { span: None, id: "v'".to_string() },
typ: Box::new(
Variable {
span: None,
Expand All @@ -178,7 +178,7 @@ mod test {
),
},
Binder {
name: VarBind { span: None, id: "v".to_string() },
name: VarBind::Var { span: None, id: "v".to_string() },
typ: Box::new(
Variable {
span: None,
Expand Down

0 comments on commit 6a36511

Please sign in to comment.