mirror of
https://github.com/martinvonz/jj.git
synced 2025-02-05 19:14:43 +00:00
test_revset.rs: disable nightly clippy false-positive warning
I opened a bug for the clippy error: https://github.com/frondeus/test-case/issues/122
This commit is contained in:
parent
7a6f832e14
commit
738f99ddf1
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,11 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// TODO: Remove after https://github.com/frondeus/test-case/issues/122 is resolved
|
||||
#![allow(unknown_lints)] // Needed for clippy <1.70
|
||||
#![allow(clippy::items_after_test_module)]
|
||||
#![deny(unknown_lints)]
|
||||
|
||||
use std::path::Path;
|
||||
|
||||
use assert_matches::assert_matches;
|
||||
|
|
Loading…
Reference in a new issue