Skip to content

Commit

Permalink
Merge branch 'main' into btreemap
Browse files Browse the repository at this point in the history
  • Loading branch information
Pushkarm029 authored Jun 23, 2024
2 parents 4ad99c7 + 8d12782 commit fad8459
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion fs-storage/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ else
@exit 1
endif


.PHONY: test-linux
test-linux: build-rust download-test-lib java-test-linux

Expand Down
3 changes: 2 additions & 1 deletion fs-storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@ LD_LIBRARY_PATH=../../target/debug && java FileStorage.java
## Steps to test Java Wrapper
```bash
make test
```
```

2 changes: 1 addition & 1 deletion fs-storage/tests/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
*.jar
*.h
*.h
2 changes: 1 addition & 1 deletion fs-storage/tests/FileStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void erase() {
public void merge(FileStorage other) {
merge(this.fileStoragePtr, other.fileStoragePtr);
}

public FileStorageIterator iterator() {
long iteratorPtr = createIterator(this.fileStoragePtr);
return new FileStorageIterator(iteratorPtr);
Expand Down
1 change: 0 additions & 1 deletion fs-storage/tests/FileStorageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ public void testFileStorageMainScenario() {
assertFalse(file.exists());
}

// NOT WORKING
@Test
public void testReadData() {
Path storagePath = tempDir.resolve("test.txt");
Expand Down

0 comments on commit fad8459

Please sign in to comment.