Skip to content

Commit 72c5a5d

Browse files
committed
Change output metadata variable name.
1 parent 9c85415 commit 72c5a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdal/test/PythonFilterTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ TEST_F(PythonFilterTest, metadata)
225225
"def myfunc(ins,outs):\n"
226226
" global metadata\n"
227227
" #print('before', globals(), file=sys.stderr,)\n"
228-
" metadata = {'name': 'root', 'value': 'a string', 'type': 'string', 'description': 'a description', 'children': [{'name': 'filters.python', 'value': 52, 'type': 'integer', 'description': 'a filter description', 'children': []}, {'name': 'readers.faux', 'value': 'another string', 'type': 'string', 'description': 'a reader description', 'children': []}]}\n"
228+
" out_metadata = {'name': 'root', 'value': 'a string', 'type': 'string', 'description': 'a description', 'children': [{'name': 'filters.python', 'value': 52, 'type': 'integer', 'description': 'a filter description', 'children': []}, {'name': 'readers.faux', 'value': 'another string', 'type': 'string', 'description': 'a reader description', 'children': []}]}\n"
229229
" # print ('schema', schema, file=sys.stderr,)\n"
230230
" return True\n"
231231
);

0 commit comments

Comments
 (0)