mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-14 11:45:02 +01:00
fix test
This commit is contained in:
parent
99ce586dec
commit
89820b06ca
2 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
use crate::frame::FrameType;
|
||||
use crate::frame::{ChannelId, FrameType};
|
||||
use crate::{frame, methods};
|
||||
use amqp_core::methods::{FieldValue, Method};
|
||||
use std::collections::HashMap;
|
||||
|
|
@ -21,7 +21,7 @@ async fn write_start_ok_frame() {
|
|||
|
||||
let frame = frame::Frame {
|
||||
kind: FrameType::Method,
|
||||
channel: 0,
|
||||
channel: ChannelId::zero(),
|
||||
payload: payload.into(),
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use crate::project_root;
|
||||
use anyhow::{bail, Context, Result};
|
||||
use std::path::Path;
|
||||
use std::process::{Command, Stdio};
|
||||
use std::process::Command;
|
||||
|
||||
pub fn main() -> Result<()> {
|
||||
let project_root = project_root();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue