Skip to content

Commit

Permalink
fix new lint
Browse files Browse the repository at this point in the history
Signed-off-by: yihuaf <[email protected]>
  • Loading branch information
yihuaf committed Jun 4, 2023
1 parent e86ae4d commit 15c7c56
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///! Contains utility functions for testing
///! Similar to https://github.com/opencontainers/runtime-tools/blob/master/validation/util/test.go
//! Contains utility functions for testing
//! Similar to https://github.com/opencontainers/runtime-tools/blob/master/validation/util/test.go
use super::{generate_uuid, prepare_bundle, set_config};
use super::{get_runtime_path, get_runtimetest_path};
use anyhow::{anyhow, bail, Context, Result};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
///! Contains definition for a tests which should be conditionally run
//! Contains definition for a tests which should be conditionally run
use crate::testable::{TestResult, Testable};

// type aliases for test function signature
Expand Down
2 changes: 1 addition & 1 deletion tests/rust-integration-tests/test_framework/src/test.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
///! Contains definition for a simple and commonly usable test structure
//! Contains definition for a simple and commonly usable test structure
use crate::testable::{TestResult, Testable};

// type alias for the test function
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
///! Contains structure for a test group
//! Contains structure for a test group
use crate::testable::{TestResult, Testable, TestableGroup};
use crossbeam::thread;
use std::collections::BTreeMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
///! This exposes the main control wrapper to control the tests
//! This exposes the main control wrapper to control the tests
use crate::testable::{TestResult, TestableGroup};
use anyhow::Result;
use crossbeam::thread;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Contains Basic setup for testing, testable trait and its result type
use std::fmt::Debug;

///! Contains Basic setup for testing, testable trait and its result type
use anyhow::{bail, Error, Result};

#[derive(Debug)]
Expand Down

0 comments on commit 15c7c56

Please sign in to comment.