Skip to content

Commit

Permalink
Merge branch 'master' into release-0.66.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markwpearce committed Aug 1, 2023
2 parents 973f099 + b2fc10e commit cf25c50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Scope.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2738,7 +2738,7 @@ describe('Scope', () => {
expectTypeToBe(symbolTable.getSymbolType('result', opts), FloatType);
});

it.only('should recognize consistent type after function call in binary op', () => {
it('should recognize consistent type after function call in binary op', () => {
let mainFile = program.setFile('source/main.bs', `
function process(items) as string
myString = ""
Expand Down
2 changes: 1 addition & 1 deletion src/bscPlugin/hover/HoverProcessor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ describe('HoverProcessor', () => {
expect(hover?.contents).eql([fence('member as dynamic')]);
});

it.only('should recognize consistent type after function call in binary op', () => {
it('should recognize consistent type after function call in binary op', () => {
let file = program.setFile('source/main.bs', `
function arrayToString(items as object) as string
description = "["
Expand Down

0 comments on commit cf25c50

Please sign in to comment.