Skip to content

Commit

Permalink
Bump snforge_scarb_plugin version 0.33.1 (#2666)
Browse files Browse the repository at this point in the history
<!-- Reference any GitHub issues resolved by this PR -->

Closes #

## Introduced changes

<!-- A brief description of the changes -->

-

## Checklist

<!-- Make sure all of these are complete -->

- [x] Linked relevant issue
- [x] Updated relevant documentation
- [x] Added relevant tests
- [x] Performed self-review of the code
- [x] Added changes to `CHANGELOG.md`
  • Loading branch information
kkawula authored Nov 12, 2024
1 parent a71e546 commit ccfa306
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/snforge-scarb-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ indoc.workspace = true
serde_json.workspace = true
smol_str.workspace = true
num-bigint.workspace = true
shared.workspace = true

[dev-dependencies]
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/snforge-scarb-plugin/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snforge_scarb_plugin"
version = "0.33.0"
version = "0.33.1"
edition = "2024_07"

[cairo-plugin]
3 changes: 1 addition & 2 deletions crates/snforge-scarb-plugin/src/attributes/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use cairo_lang_macro::{Diagnostic, Diagnostics, ProcMacroResult, TokenStream};
use cairo_lang_syntax::node::{ast::FunctionWithBody, db::SyntaxGroup, Terminal, TypedSyntaxNode};
use indoc::formatdoc;

use shared::consts::SNFORGE_TEST_FILTER;
use std::env::{self, VarError};
struct TestCollector;

Expand Down Expand Up @@ -64,5 +63,5 @@ fn test_internal(
}

fn get_forge_test_filter() -> Result<String, VarError> {
env::var(SNFORGE_TEST_FILTER)
env::var("SNFORGE_TEST_FILTER")
}

0 comments on commit ccfa306

Please sign in to comment.