8000 fixed pymas single varible code issue AND fixed automated test to mat… · teoland/python-sasctl@ec358d5 · GitHub
[go: up one dir, main page]

Skip to content

Commit ec358d5

Browse files
author
Cloud User
committed
fixed pymas single varible code issue AND fixed automated test to match new tweaks of pymas
1 parent 7f53126 commit ec358d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_pymas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_from_pickle(train_data, pickle_file):
186186
rc = py.appendSrcLine(' import numpy as np');
187187
rc = py.appendSrcLine('');
188188
rc = py.appendSrcLine(' inputarray = np.array([SepalLength,SepalWidth,PetalLength,PetalWidth]).reshape((1, -1))');
189-
rc = py.appendSrcLine(' column=["CRIM","ZN","INDUS","CHAS","NOX","RM","AGE","DIS","RAD","TAX","PTRATIO","B","LSTAT"]');
189+
rc = py.appendSrcLine(' column=["SepalLength","SepalWidth","PetalLength","PetalWidth"]');
190190
rc = py.appendSrcLine(' import pandas as pd');
191191
rc = py.appendSrcLine(' inputrun=pd.DataFrame(data=inputarray, columns=column)');
192192
rc = py.appendSrcLine(' result = obj.predict(inputrun)');

0 commit comments

Comments
 (0)
0