Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Mart committed May 22, 2024
1 parent 927b402 commit f3bb82a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion libraries/psibase/common/include/psibase/serveGraphQL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ namespace psibase
///
/// Allows for a user-provided projection function that transforms elements from type T to Key
/// before isolating a range within the container.
///
template <typename Connection, typename T, typename Key>
Connection makeVirtualConnection(const std::vector<T>& elements,
const std::optional<Key>& gt,
Expand Down
2 changes: 1 addition & 1 deletion programs/psinode/tests/test_psibase.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_install(self, cluster):
a.boot(packages=['Minimal', 'Explorer'])
a.run_psibase(['install', 'Symbol', 'Tokens', 'TokenUsers'])
a.wait(new_block())
a.graphql('tokens', '''query { userBalances(user: "alice") { user balance precision token symbol } }''')
a.graphql('tokens', '''query { userBalances(user: "alice") { edges { node { symbolId tokenId balance precision { value } } } } }''')

@testutil.psinode_test
def test_upgrade(self, cluster):
Expand Down

0 comments on commit f3bb82a

Please sign in to comment.