Skip to content

Commit

Permalink
test dings
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
  • Loading branch information
blt committed May 10, 2022
1 parent 2e5281f commit 064696c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/vrl/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ enrichment = { path = "../../enrichment" }
stdlib = { package = "vrl-stdlib", path = "../stdlib" }
vector_common = { path = "../../vector-common", default-features = false }
vrl = { path = "../vrl" }
value = { path = "../../value" }

ansi_term = "0.12"
chrono = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion lib/vrl/tests/src/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn examples_to_tests(

impl Test {
fn from_cue_example(category: &'static str, name: String, example: Example) -> Self {
use vrl::Value;
use ::value::Value;

let Example {
title,
Expand Down
3 changes: 2 additions & 1 deletion lib/vrl/tests/src/test.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::{collections::BTreeMap, fs, path::Path};

use vrl::{function::Example, Value};
use ::value::Value;
use vrl::function::Example;

#[derive(Debug)]
pub struct Test {
Expand Down

0 comments on commit 064696c

Please sign in to comment.