Skip to content

Commit 3190f6e

Browse files
committed
chore: remove more unused fixtures
1 parent 8ff8ce1 commit 3190f6e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ibis/backends/bigquery/tests/unit/udf/snapshots/test_core/test_scope_with_while/out.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function f() {
2-
class Foo {
2+
class _ {
33
do_stuff() {
44
while (true) {
55
let i = 1;

ibis/backends/bigquery/tests/unit/udf/snapshots/test_core/test_set_to_object/out.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function f(a) {
1+
function f(_) {
22
let x = (new Set());
33
let y = 1;
44
x.add(y);

ibis/backends/bigquery/tests/unit/udf/snapshots/test_core/test_setitem/out.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function f(a) {
1+
function f(_) {
22
let x = {};
33
let y = '2';
44
x[y] = y;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
function* f(a) {
1+
function* f(_) {
22
yield* [1, 2, 3];
33
}

ibis/backends/bigquery/tests/unit/udf/test_usage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def my_len(s: str) -> float:
6666
def test_udf_int64(argument_type, return_type):
6767
# invalid argument type, valid return type
6868
@udf.scalar.python(signature=((argument_type,), return_type))
69-
def my_func(_):
69+
def my_func(_x):
7070
return 1
7171

7272
expr = my_func(None)

0 commit comments

Comments
 (0)