Skip to content

Commit a3dae1e

Browse files
committed
simplified assertions
1 parent 2aead57 commit a3dae1e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

common/client/src/main/java/zingg/common/client/util/ColName.java

-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,5 @@ public interface ColName {
3333
public static final String COL_SPLIT = COL_PREFIX + "split";
3434
public static final String HASH_COUNTS_COL = ColName.HASH_COL + "_count";
3535
public static final String BLOCK_SAMPLES = "blockSamples/";
36-
public static final String STOPWORD_COL = COL_PREFIX + "word";
3736

3837
}

spark/core/src/test/java/zingg/spark/core/recommender/TestSparkStopWordsRecommender.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public ZFrame<Dataset<Row>, Row, Column> getStopWordsDataset(ZFrame<Dataset<Row>
5050

5151
@Override
5252
public String getStopWordColName() {
53-
return ColName.STOPWORD_COL;
53+
return ColName.COL_WORD;
5454
}
5555

5656

0 commit comments

Comments
 (0)