fix(tvix/eval): fix typo'd function name in tests
Caught by sterni on cl/7783. Change-Id: I15d57b893ef22538fdd7e809f3b92861dd2bc1af Reviewed-on: https://cl.tvl.fyi/c/depot/+/7789 Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
b3d93a5048
commit
a149a1ee06
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ mod mock_builtins {
|
|||
use crate::*;
|
||||
|
||||
#[builtin("derivation")]
|
||||
fn builtin_type_of(vm: &mut VM, input: Value) -> Result<Value, ErrorKind> {
|
||||
fn builtin_derivation(vm: &mut VM, input: Value) -> Result<Value, ErrorKind> {
|
||||
vm.emit_warning(WarningKind::NotImplemented("builtins.derivation"));
|
||||
|
||||
let input = input.to_attrs()?;
|
||||
|
|
Loading…
Reference in a new issue