Skip to content

Commit 369d792

Browse files
committed
qualify FileIO.info in tests
1 parent 50dd9a9 commit 369d792

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/query.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,21 @@ try
6767
@test unknown(format"UNKNOWN")
6868

6969
add_format(format"CSV", UInt8[], ".csv")
70-
@test info(format"CSV") == ((),".csv")
70+
@test FileIO.info(format"CSV") == ((),".csv")
7171
add_format(format"FOO", (), ".foo") # issue #17
72-
@test_throws Exception info(format"OOPS")
72+
@test_throws Exception FileIO.info(format"OOPS")
7373
@test FileIO.ext2sym[".csv"] == :CSV
7474
del_format(format"FOO")
7575
@test FileIO.magic_list == [Pair((),:CSV)]
7676
del_format(format"CSV")
7777
@test isempty(FileIO.ext2sym)
7878
@test isempty(FileIO.magic_list)
7979
@test isempty(FileIO.sym2info)
80-
@test_throws Exception info(format"CSV")
80+
@test_throws Exception FileIO.info(format"CSV")
8181

8282
add_format(format"JUNK", "JUNK", [".jnk",".junk",".JNK"])
8383

84-
@test info(format"JUNK") == (tuple(b"JUNK"...),[".jnk",".junk",".JNK"])
84+
@test FileIO.info(format"JUNK") == (tuple(b"JUNK"...),[".jnk",".junk",".JNK"])
8585
@test FileIO.ext2sym[".jnk"] == :JUNK
8686
@test FileIO.ext2sym[".junk"] == :JUNK
8787
@test FileIO.ext2sym[".JNK"] == :JUNK

0 commit comments

Comments
 (0)