Skip to content

Commit

Permalink
Fixing path issues in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FayCarsons committed Feb 12, 2024
1 parent e565013 commit 2c4f269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/tests/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ mod tests {
#[actix_web::test]
async fn insert_stock() {
use crate::schema::stock::{self, id};
let stock = fs::read_to_string("/Users/fay/Desktop/Code/Rust/printshop/backend/stock.json")
let stock = fs::read_to_string("stock.json")
.unwrap();
let stock: Vec<InputItem> = serde_json::from_str(&stock).unwrap();

Expand Down

0 comments on commit 2c4f269

Please sign in to comment.