Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
bmflynn committed Jan 30, 2025
1 parent 8a417ef commit 63871b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ serde = "1.0"
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
spacecrafts = { path = "../spacecrafts-rs" }
spacecrafts = "0.1.0-beta.5"
hifitime = "4.0.0"
pyo3 = { version = "^0.22.0" }
11 changes: 1 addition & 10 deletions ccsds-lib/src/framing/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,19 +359,10 @@ where

#[cfg(test)]
mod tests {
use std::{fs, path::PathBuf};

use crate::framing::{Synchronizer, ASM, MPDU};
use crate::framing::MPDU;

use super::*;

fn fixture_path(name: &str) -> PathBuf {
let mut path = PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap());
dbg!(&path);
path.push(name);
path
}

#[test]
fn decode_frame() {
let dat: Vec<u8> = vec![
Expand Down

0 comments on commit 63871b0

Please sign in to comment.