Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gnkz committed Oct 16, 2023
1 parent ca60fab commit 14b8037
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion test/examples/fs/FsExample03.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {Test, expect, fs, BoolResult, FsMetadataResult} from "vulcan/test.sol";
import {Test} from "vulcan/test.sol";
import {expect} from "vulcan/test/Expect.sol";
import {fs, FsMetadataResult} from "vulcan/test/Fs.sol";
import {BoolResult} from "vulcan/test/Result.sol";

/// @title Other operations
/// @dev Obtain metadata and check if file exists
Expand Down
2 changes: 1 addition & 1 deletion test/modules/Fe.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {commands, Command} from "src/test/Commands.sol";
import {fe, Fe} from "src/test/Fe.sol";
import {fs} from "src/test/Fs.sol";
import {strings} from "src/test/Strings.sol";
import {StringResult} from "src/test/Results.sol";
import {StringResult} from "src/test/Result.sol";
import {println} from "src/utils.sol";

contract FeTest is Test {
Expand Down
2 changes: 1 addition & 1 deletion test/modules/Fs.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {expect} from "src/test/Expect.sol";
import {fs, FsErrors, FsMetadata, FsMetadataResult} from "src/test/Fs.sol";
import {commands} from "src/test/Commands.sol";
import {Error} from "src/test/Error.sol";
import {StringResult, BoolResult, BytesResult, EmptyResult} from "src/test/Results.sol";
import {StringResult, BoolResult, BytesResult, EmptyResult} from "src/test/Result.sol";

contract FsTest is Test {
string constant HELLO_WORLD = "./test/fixtures/fs/read/hello_world.txt";
Expand Down

0 comments on commit 14b8037

Please sign in to comment.